From 9fd84b9b78d3c4ca3ea142a37b17a4c7144507c7 Mon Sep 17 00:00:00 2001 From: oberrich Date: Fri, 10 Jan 2025 08:54:42 +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 9bd151b..c619534 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -92,7 +92,7 @@ jobs: Log "Starting installation of $($dep.Name)..." try { - & $dep.Action | Out-Null + Start-Process $dep.Action -RedirectStandardOutput $null -NoNewWindow -Wait Log "$($dep.Name) installation completed." } catch { Log "An error occurred while installing $($dep.Name): $_" "ERROR"