From 8cf13d657b610dcec9c8f3d7813532589ae4f389 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Wed, 18 Mar 2026 00:09:55 -0400 Subject: [PATCH] fix: suppress rustup stderr in PowerShell CI Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build-release.yml b/.gitea/workflows/build-release.yml index 0d83320..4009f9f 100644 --- a/.gitea/workflows/build-release.yml +++ b/.gitea/workflows/build-release.yml @@ -55,8 +55,10 @@ jobs: - name: Configure toolchain shell: powershell run: | + $ErrorActionPreference = "Continue" # Ensure rustup has a default toolchain rustup default stable 2>$null + $ErrorActionPreference = "Stop" # Add tool paths that SYSTEM doesn't have # Java