Преглед изворни кода

Fixes #2032 branches with `<` chars causes errors

main
mcy пре 2 година
committed by Eric Amodio
родитељ
комит
e0f46cdfa7
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/git/models/repository.ts

+ 1
- 1
src/git/models/repository.ts Прегледај датотеку

@ -1072,7 +1072,7 @@ export class Repository implements Disposable {
}
private runTerminalCommand(command: string, ...args: string[]) {
const parsedArgs = args.map(arg => (arg.startsWith('#') || /['();$|>&]/.test(arg) ? `"${arg}"` : arg));
const parsedArgs = args.map(arg => (arg.startsWith('#') || /['();$|>&<]/.test(arg) ? `"${arg}"` : arg));
runGitCommandInTerminal(command, parsedArgs.join(' '), this.path, true);
setTimeout(() => this.fireChange(RepositoryChange.Unknown), 2500);

Loading…
Откажи
Сачувај