fix: suppress rustup stderr in PowerShell CI
Some checks failed
Build & Sign Wraith / Build Windows + Sign (push) Failing after 1s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell 2026-03-18 00:09:55 -04:00
parent 57381566b8
commit 8cf13d657b

View File

@ -55,8 +55,10 @@ jobs:
- name: Configure toolchain - name: Configure toolchain
shell: powershell shell: powershell
run: | run: |
$ErrorActionPreference = "Continue"
# Ensure rustup has a default toolchain # Ensure rustup has a default toolchain
rustup default stable 2>$null rustup default stable 2>$null
$ErrorActionPreference = "Stop"
# Add tool paths that SYSTEM doesn't have # Add tool paths that SYSTEM doesn't have
# Java # Java