From 6df36fa3d71c1808dad64f74f047d2eab8020519 Mon Sep 17 00:00:00 2001 From: Joachim Schmitz Date: Mon, 30 Dec 2024 11:00:53 +0100 Subject: [PATCH] Fix missleading typo in setup.bat --- buildscripts/ci/windows/setup.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/ci/windows/setup.bat b/buildscripts/ci/windows/setup.bat index 8fa95e763d6d9..3f3947dd595e3 100644 --- a/buildscripts/ci/windows/setup.bat +++ b/buildscripts/ci/windows/setup.bat @@ -67,7 +67,7 @@ ECHO "=== Installing PortableApps.com Tools ===" CALL "wget.exe" --no-check-certificate "https://s3.amazonaws.com/utils.musescore.org/portableappslauncher.zip" -O %TEMP_DIR%\portableappslauncher.zip CALL "7z" x -y %TEMP_DIR%\portableappslauncher.zip "-oC:\portableappslauncher" -:: portableappslauncher is a vanilla installation of PortableApps.com Installer https://portableapps.com/apps/development/portableapps.com_launcher +:: portableappsinstaller is a vanilla installation of PortableApps.com Installer https://portableapps.com/apps/development/portableapps.com_installer CALL "wget.exe" --no-check-certificate "https://s3.amazonaws.com/utils.musescore.org/portableappsinstaller.zip" -O %TEMP_DIR%\portableappsinstaller.zip CALL "7z" x -y %TEMP_DIR%\portableappsinstaller.zip "-oC:\portableappsinstaller" )