From f343440b0535ccb400a328c4315b1e7d6d091fff Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 12 Jul 2024 12:51:39 +0200 Subject: [PATCH] fixup! open-pr: support updating InnoSetup --- update-scripts/version/innosetup | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/update-scripts/version/innosetup b/update-scripts/version/innosetup index 8764b363..e6e67783 100755 --- a/update-scripts/version/innosetup +++ b/update-scripts/version/innosetup @@ -1,5 +1,11 @@ #!/bin/sh -sh -x ./update-inno-setup.sh && set -x && -git add -A InnoSetup/ \ No newline at end of file +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 \ No newline at end of file