From a5d05882eaa20fc2aee1acdd8578f36c18053bd0 Mon Sep 17 00:00:00 2001 From: oberrich Date: Fri, 10 Jan 2025 00:22:59 +0100 Subject: [PATCH] chore: use nushell in ci --- .github/workflows/rust.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a903267..e1defa2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -56,13 +56,15 @@ jobs: Start-Process @{ FilePath = 'msiexec.exe' ArgumentList = @( - '/i "${{github.workspace}}\nu-0.101.0-${{ matrix.target }}.msi"' + '/i' + "${{github.workspace}}\nu-0.101.0-${{ matrix.target }}.msi" 'ALLUSERS="2"' - '/qn' + '/qb!' '/L*v "nu-install.log"' ) Wait = $true NoNewWindow = $true + PassThru = $true } "C:\Program Files\nu\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append