From 4fdd546aa07bdb34721a0a2d7c9d7f9e6301e674 Mon Sep 17 00:00:00 2001 From: Steve Hannah Date: Sun, 25 Feb 2024 07:30:43 -0800 Subject: [PATCH] fixed ev codesign to follow redirects --- scripts/windows-ev-codesign.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/windows-ev-codesign.sh b/scripts/windows-ev-codesign.sh index 7e0ea59..a5d9b08 100644 --- a/scripts/windows-ev-codesign.sh +++ b/scripts/windows-ev-codesign.sh @@ -12,7 +12,7 @@ INPUT_FILE="$1" OUTPUT_FILE="$2" # Download the .tgz file using curl. You can use wget if you prefer. -curl -o "$TAR_FILE" "$TAR_URL" +curl -L -o "$TAR_FILE" "$TAR_URL" # Alternatively, if you prefer wget, uncomment the following line and comment out the curl command above. # wget -O "$TAR_FILE" "$TAR_URL"