Browse Source

Stops directory compare waiting for external tool

main
Eric Amodio 4 years ago
parent
commit
c4022c2727
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/commands/diffDirectory.ts

+ 1
- 1
src/commands/diffDirectory.ts View File

@ -87,7 +87,7 @@ export class DiffDirectoryCommand extends ActiveEditorCommand {
if (args.ref1 === undefined) return undefined;
}
await Container.git.openDirectoryDiff(repoPath, args.ref1, args.ref2);
Container.git.openDirectoryDiff(repoPath, args.ref1, args.ref2);
return undefined;
} catch (ex) {
const msg = ex && ex.toString();

Loading…
Cancel
Save