From cf7190fcfe2814cebe4eb1d73a8c2ecc582bb168 Mon Sep 17 00:00:00 2001 From: oberrich Date: Fri, 10 Jan 2025 09:00:05 +0100 Subject: [PATCH] chore: improve ci powershell --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b708c07..e80d151 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -98,7 +98,7 @@ jobs: Log "Starting installation of $($dep.Name)..." try { - Start-Process $dep.Action -RedirectStandardOutput $null -NoNewWindow -Wait + & $dep.Action 2>&1 | Out-Null Log "$($dep.Name) installation completed." } catch { Log "An error occurred while installing $($dep.Name): $_" "ERROR"