We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 621eb1f commit ed93485Copy full SHA for ed93485
.github/workflows/scripts/windows/setup.ps1
@@ -3,10 +3,7 @@
3
4
# Download the VSIX archived upstream
5
npm ci --ignore-scripts
6
-$Process = Start-Process npx "tsx scripts/download_vsix.ts" -Wait -PassThru -NoNewWindow
7
-if ($Process.ExitCode -eq 0) {
8
- Write-Host 'SUCCESS'
9
-} else {
10
- Write-Host ('FAILED ({0})' -f $Process.ExitCode)
11
- exit 1
+npx tsx scripts/download_vsix.ts
+if ($LastExitCode -ne 0) {
+ exit $LastExitCode
12
}
0 commit comments