Skip to content

Commit ee0f418

Browse files
committed
Fix tasks.json files by removing env variable
1 parent c558cc1 commit ee0f418

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "2.0.0",
33

44
"windows": {
5-
"command": "powershell.exe",
5+
"command": "C:\\Windows\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
66
"args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ]
77
},
88
"linux": {

examples/.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
// Start PowerShell
3535
"windows": {
36-
"command": "${env.windir}\\sysnative\\windowspowershell\\v1.0\\PowerShell.exe",
36+
"command": "C:\\Windows\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
3737
"args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ]
3838
},
3939
"linux": {

0 commit comments

Comments
 (0)