mirror of
https://github.com/Radarr/Radarr
synced 2026-05-07 10:10:59 +02:00
chore: Fix innosetup download URI
Co-authored-by: RobinDadswell <19610103+RobinDadswell@users.noreply.github.com>
This commit is contained in:
parent
079e2136ee
commit
15f7d571fc
1 changed files with 3 additions and 1 deletions
4
build.sh
4
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue