File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/vs/workbench/contrib/tasks/browser Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2207,11 +2207,9 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
2207
2207
if ( ! ( await this . _trust ( ) ) ) {
2208
2208
return new Map ( ) ;
2209
2209
}
2210
- await this . _waitForTaskSystem ( ) ;
2211
2210
await this . _waitForSupportedExecutions ;
2212
- // The build task might be run before folder open. On folder open, we need to update the tasks so that
2213
- // all tasks are parsed. #173384
2214
- if ( runSource !== TaskRunSource . FolderOpen && this . _workspaceTasksPromise ) {
2211
+ await this . _waitForTaskSystem ( ) ;
2212
+ if ( this . _workspaceTasksPromise ) {
2215
2213
return this . _workspaceTasksPromise ;
2216
2214
}
2217
2215
return this . _updateWorkspaceTasks ( runSource ) ;
You can’t perform that action at this time.
0 commit comments