1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-29 18:15:37 -04:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Auggie
df8f82c3c6 chore: Fix innosetup download URI
Co-authored-by: RobinDadswell
<19610103+RobinDadswell@users.noreply.github.com>
2026-03-26 11:01:02 +00:00
2 changed files with 9 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ variables:
sentryUrl: 'https://sentry.servarr.com' sentryUrl: 'https://sentry.servarr.com'
dotnetVersion: '8.0.405' dotnetVersion: '8.0.405'
nodeVersion: '20.X' nodeVersion: '20.X'
innoVersion: '6.2.2' innoVersion: '6.7.1'
windowsImage: 'windows-2025' windowsImage: 'windows-2025'
linuxImage: 'ubuntu-24.04' linuxImage: 'ubuntu-24.04'
macImage: 'macOS-15' macImage: 'macOS-15'

View File

@@ -254,7 +254,7 @@ InstallInno()
ProgressStart "Installing portable Inno Setup" ProgressStart "Installing portable Inno Setup"
rm -rf _inno 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 mkdir _inno
./innosetup.exe //portable=1 //silent //currentuser //dir=.\\_inno ./innosetup.exe //portable=1 //silent //currentuser //dir=.\\_inno
rm innosetup.exe rm innosetup.exe