From 15f7d571fcd1df686506870f6bbdcf2708ae8c65 Mon Sep 17 00:00:00 2001 From: Auggie <773150+augustuen@users.noreply.github.com> Date: Wed, 25 Mar 2026 19:42:26 +0100 Subject: [PATCH] chore: Fix innosetup download URI Co-authored-by: RobinDadswell <19610103+RobinDadswell@users.noreply.github.com> --- build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 73e785bebe..78cf0ebc60 100755 --- a/build.sh +++ b/build.sh @@ -253,8 +253,10 @@ InstallInno() { ProgressStart "Installing portable Inno Setup" + INNOVERSION=${INNOEVERSION:-6.7.1} + rm -rf _inno - curl -s --output innosetup.exe "https://files.jrsoftware.org/is/6/innosetup-${INNOVERSION:-6.2.2}.exe" + curl -s -L --output innosetup.exe "https://github.com/jrsoftware/issrc/releases/download/is-${INNOVERSION//./_}/innosetup-${INNOVERSION}.exe" mkdir _inno ./innosetup.exe //portable=1 //silent //currentuser //dir=.\\_inno rm innosetup.exe