Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/autobuild/windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down