Skip to content

Commit 9d57d4d

Browse files
committed
Change PowerShell exe path in tasks.json
For some reason the new task runner was not executing PowerShell correctly using the path that we specifed in tasks.json. I've simplified the path string to make this more reliable.
1 parent a36d570 commit 9d57d4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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": "${env.windir}\\sysnative\\windowspowershell\\v1.0\\PowerShell.exe",
5+
"command": "powershell.exe",
66
"args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ]
77
},
88
"linux": {

0 commit comments

Comments
 (0)