From 24e13f73a98d4ebcac06e9d26339961ce8008ae2 Mon Sep 17 00:00:00 2001 From: xperia64 Date: Wed, 7 Oct 2015 17:48:46 -0400 Subject: [PATCH] Make curl follow redirects --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 3ac8475eed..5704a9ce23 100755 --- a/install.sh +++ b/install.sh @@ -17,7 +17,7 @@ libVFile="./libversion" function download { if command -v curl > /dev/null 2>&1; then - curl -o $2 $1 + curl -L -o $2 $1 elif command -v wget > /dev/null 2>&1; then wget -O $2 $1 else