We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99823be commit 348933fCopy full SHA for 348933f
update-scripts/version/innosetup
@@ -1,5 +1,15 @@
1
#!/bin/sh
2
3
-sh -x ./update-inno-setup.sh &&
4
set -x &&
5
-git add -A InnoSetup/
+url="https://files.jrsoftware.org/is/${1%%.*}/innosetup-$1.exe" &&
+curl -# -LR -D curl.log -o is.exe "$url" &&
6
+cat curl.log &&
7
+case "$(head -n 1 curl.log)" in
8
+HTTP/*" 200"*) ;; # okay
9
+*) false;;
10
+esac &&
11
+./is.exe //verysilent //dir=InnoSetup //noicons //tasks= //portable=1 //lang=english \
12
+ //SP- //SUPPRESSMSGBOXES //NORESTART //LOG=is.log &&
13
+cat is.log &&
14
+git add -A InnoSetup/ &&
15
+git status
0 commit comments