Skip to content

Commit ec9b56e

Browse files
authored
Merge pull request microsoft#188955 from microsoft/merogge/test-fix
use `groupId` to find workspace tasks in group
2 parents 9534729 + 200a088 commit ec9b56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/tasks/browser/abstractTaskService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2971,7 +2971,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
29712971
}
29722972

29732973
if (!globTasksDetected && groupTasks.length === 0) {
2974-
groupTasks = await this._findWorkspaceTasksInGroup(TaskGroup.Build, true);
2974+
groupTasks = await this._findWorkspaceTasksInGroup(taskGroup, true);
29752975
}
29762976

29772977
const handleMultipleTasks = (areGlobTasks: boolean) => {

0 commit comments

Comments
 (0)