From 78d1e1e73e5ca174e27ae0742fb5438d30ec522b Mon Sep 17 00:00:00 2001 From: Harry S - commited from my M1 Date: Wed, 3 Mar 2021 11:18:14 -0800 Subject: [PATCH] make curl follow redirects --- configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index 6d5cde2..6559d0a 100755 --- a/configure.sh +++ b/configure.sh @@ -9,7 +9,7 @@ if [ ! -f $COMMITTER_LOCATION ]; then echo "Committer is not installed!" echo "Downloading $DOWNLOAD_URL to $COMMITTER_LOCATION..." - curl -o $COMMITTER_LOCATION --fail $DOWNLOAD_URL + curl -L -o $COMMITTER_LOCATION --fail $DOWNLOAD_URL echo "Making $COMMITTER_LOCATION executable" chmod +x $COMMITTER_LOCATION