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 294728cCopy full SHA for 294728c
.github/workflows/scripts/windows/setup.ps1
@@ -3,10 +3,11 @@
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
+if ($LastExitCode -ne 0) {
+ exit $LastExitCode
+}
+
+npx tsx scripts/download_vsix.tsx
12
13
}
0 commit comments