diff --git a/src/vs/workbench/parts/tasks/electron-browser/terminalTaskSystem.ts b/src/vs/workbench/parts/tasks/electron-browser/terminalTaskSystem.ts index 168538481af..3d7718062da 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/terminalTaskSystem.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/terminalTaskSystem.ts @@ -691,7 +691,7 @@ export class TerminalTaskSystem implements ITaskSystem { return command; } let basename = path.parse(shellExecutable).name.toLowerCase(); - let shellQuoteOptions = this.getOuotingOptions(basename, shellOptions); + let shellQuoteOptions = this.getQuotingOptions(basename, shellOptions); function needsQuotes(value: string): boolean { if (value.length >= 2) { @@ -784,7 +784,7 @@ export class TerminalTaskSystem implements ITaskSystem { return commandLine; } - private getOuotingOptions(shellBasename: string, shellOptions: ShellConfiguration): ShellQuotingOptions { + private getQuotingOptions(shellBasename: string, shellOptions: ShellConfiguration): ShellQuotingOptions { if (shellOptions && shellOptions.quoting) { return shellOptions.quoting; }