vscode-taskexplorer icon indicating copy to clipboard operation
vscode-taskexplorer copied to clipboard

Terminal not found error when stopping a compound task

Open GorvGoyl opened this issue 3 years ago • 3 comments

When I stop a dependsOn compound task, I get the error: Terminal not found. I have to manually stop underlying tasks each time.

tasks.json:

    {
      "label": "tsc watch & start:func",
      "dependsOn": ["npm: watch", "npm: start:func"]
    },

{
      "type": "npm",
      "script": "watch",
      "group": "test",
      "problemMatcher": [],
      "label": "npm: watch",
      "detail": "tsc --watch",
      "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": false,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": false
      }
    },

{
      "type": "npm",
      "script": "start:func",
      "problemMatcher": [],
      "label": "npm: start:func",
      "detail": "firebase emulators:start --only functions",
      "presentation": {
        "echo": true,
        "reveal": "always",
        "focus": true,
        "panel": "shared",
        "showReuseMessage": true,
        "clear": false
      }
    }

image

GorvGoyl avatar Aug 31 '21 18:08 GorvGoyl

Happens to me on all tasks too

ItamarShDev avatar Jan 15 '23 13:01 ItamarShDev

Happens for me too on latest versions.

Task Explorer: 2.13.2 VSCode: 1.75.1 OS: Windows 10

tyler36 avatar Feb 27 '23 04:02 tyler36

This happens to me anytime a task gets an error for some reason.

blu28 avatar Mar 10 '23 14:03 blu28