summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-06-05 11:23:01 +0300
committerAndrew Dolgov <[email protected]>2022-06-05 11:23:01 +0300
commit185234bc67023640a0890daf69faeaa0df8575da (patch)
tree17079a1b6bf4fe1c473bd081ff619e4a3e78be6e /.vscode
parent9457bb090aba5c9134fb001b2ba41fe32a8c66b8 (diff)
gulp task: add flatpak node16 sdk to path because it doesn't inherit launch environment
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json9
1 files changed, 7 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 006e87850..393e5af86 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -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/"
+ }
+ }
}
]
-} \ No newline at end of file
+}