mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Fixes #22655.
This commit is contained in:
@@ -73,7 +73,8 @@ function getGulpTasks(): Thenable<vscode.TaskSet> {
|
||||
if (line.length === 0) {
|
||||
continue;
|
||||
}
|
||||
result.tasks.push(new vscode.ShellTask(`gulp ${line}`, `gulp ${line}`));
|
||||
let task = new vscode.ShellTask(`gulp ${line}`, `gulp ${line}`);
|
||||
result.tasks.push(task);
|
||||
let lowerCaseLine = line.toLowerCase();
|
||||
if (lowerCaseLine === 'build') {
|
||||
buildTask = { id: line, rank: 2 };
|
||||
|
||||
Reference in New Issue
Block a user