From 4d835b88189c51951301372731c0c93b262c8ff7 Mon Sep 17 00:00:00 2001 From: ann0see <20726856+ann0see@users.noreply.github.com> Date: Tue, 14 Feb 2023 22:41:09 +0100 Subject: [PATCH] Improve updated JACK autobuild (#3003) --- .github/autobuild/windows.ps1 | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/autobuild/windows.ps1 b/.github/autobuild/windows.ps1 index 74cc0485e5..b34b757ff7 100644 --- a/.github/autobuild/windows.ps1 +++ b/.github/autobuild/windows.ps1 @@ -60,7 +60,7 @@ Function Download-Dependency if ( !$? ) { - throw "Download of "+ $Name + " (" + $Uri + ") failed with exit code $LastExitCode" + throw "Download of $Name ($Uri) failed with exit code $LastExitCode" } } @@ -159,10 +159,10 @@ Function Ensure-JACK if ( !$? ) { throw "64bit JACK installer failed with exit code $LastExitCode" - } else { - echo "64bit JACK installation completed successfully" } + echo "64bit JACK installation completed successfully" + echo "Installing JACK2 32-bit..." # Install JACK 32 Bit silently via installer @@ -174,10 +174,9 @@ Function Ensure-JACK if ( !$? ) { throw "32bit JACK installer failed with exit code $LastExitCode" - } else { - echo "32bit JACK installation completed successfully" } + echo "32bit JACK installation completed successfully" } Function Build-App-With-Installer