From 5392ee0bf024f9030f8306b4df5edb9c76f05663 Mon Sep 17 00:00:00 2001 From: Auggie <773150+augustuen@users.noreply.github.com> Date: Sun, 29 Mar 2026 01:34:30 +0100 Subject: [PATCH] chore: Fix Innosetup download URI and bump Innosetup version --- azure-pipelines.yml | 2 +- build.sh | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 62a6d2848..0c30e5b7c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,7 +17,7 @@ variables: sentryUrl: 'https://sentry.servarr.com' dotnetVersion: '8.0.405' nodeVersion: '20.X' - innoVersion: '6.2.0' + innoVersion: '6.7.1' windowsImage: 'windows-2025' linuxImage: 'ubuntu-24.04' macImage: 'macOS-15' diff --git a/build.sh b/build.sh index b7cda663f..53df4b9f7 100755 --- a/build.sh +++ b/build.sh @@ -253,8 +253,10 @@ InstallInno() { ProgressStart "Installing portable Inno Setup" + INNOVERSION=${INNOVERSION:-6.7.1} + rm -rf _inno - curl -s --output innosetup.exe "https://files.jrsoftware.org/is/6/innosetup-${INNOVERSION:-6.2.0}.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