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
22072207 if ( ! ( await this . _trust ( ) ) ) {
22082208 return new Map ( ) ;
22092209 }
2210- await this . _waitForTaskSystem ( ) ;
22112210 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 ) {
22152213 return this . _workspaceTasksPromise ;
22162214 }
22172215 return this . _updateWorkspaceTasks ( runSource ) ;
You can’t perform that action at this time.
0 commit comments