Fix bad grunt task in resolve task

This commit is contained in:
Alex Ross 2019-08-28 12:37:54 +02:00
parent 4b0a83d581
commit ac565b419d

View file

@ -127,8 +127,8 @@ class FolderDetector {
let options: vscode.ShellExecutionOptions = { cwd: this.workspaceFolder.uri.fsPath };
let source = 'grunt';
let task = gruntTask.indexOf(' ') === -1
? new vscode.Task(kind, this.workspaceFolder, gruntTask, source, new vscode.ShellExecution(`${await this._gruntCommand} ${name}`, options))
: new vscode.Task(kind, this.workspaceFolder, gruntTask, source, new vscode.ShellExecution(`${await this._gruntCommand} "${name}"`, options));
? new vscode.Task(kind, this.workspaceFolder, gruntTask, source, new vscode.ShellExecution(`${await this._gruntCommand} ${gruntTask.name}`, options))
: new vscode.Task(kind, this.workspaceFolder, gruntTask, source, new vscode.ShellExecution(`${await this._gruntCommand} "${gruntTask.name}"`, options));
return task;
}
return undefined;
@ -362,4 +362,4 @@ export function activate(_context: vscode.ExtensionContext): void {
export function deactivate(): void {
detector.dispose();
}
}