gulp task: add flatpak node16 sdk to path because it doesn't inherit launch environment

This commit is contained in:
Andrew Dolgov 2022-06-05 11:23:01 +03:00
parent 9457bb090a
commit 185234bc67
1 changed files with 7 additions and 2 deletions

9
.vscode/tasks.json vendored
View File

@ -5,7 +5,12 @@
"type": "gulp",
"task": "default",
"problemMatcher": [],
"label": "gulp: default"
"label": "gulp: default",
"options": {
"env": {
"PATH": "${env:PATH}:/usr/lib/sdk/node16/bin/"
}
}
}
]
}
}