Skip to content

Commit

Permalink
fixup! open-pr: support updating InnoSetup
Browse files Browse the repository at this point in the history
  • Loading branch information
dscho committed Jul 12, 2024
1 parent 99823be commit f343440
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions update-scripts/version/innosetup
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/bin/sh

sh -x ./update-inno-setup.sh &&
set -x &&
git add -A InnoSetup/
url="https://files.jrsoftware.org/is/${1%%.*}/innosetup-$1.exe" &&
curl -# -LR -D curl.log -o is.exe "$url" &&
cat curl.log &&
./is.exe //verysilent //dir=InnoSetup //noicons //tasks= //portable=1 //lang=english \
//SP- //SUPPRESSMSGBOXES //NORESTART //LOG=is.log &&
cat is.log &&
git add -A InnoSetup/ &&
git status

0 comments on commit f343440

Please sign in to comment.