From 3fc8482d368530ff619cc580f9d4f16344cbb3c5 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 23 Jul 2015 21:50:49 -0700 Subject: [PATCH] Make curl follow redirects --- openssl/test/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl/test/build.sh b/openssl/test/build.sh index 27def60a6..9334083df 100755 --- a/openssl/test/build.sh +++ b/openssl/test/build.sh @@ -4,7 +4,7 @@ set -e mkdir /tmp/openssl cd /tmp/openssl sudo apt-get install gcc make -curl https://openssl.org/source/openssl-1.0.2-latest.tar.gz | tar --strip-components=1 -xzf - +curl -L https://openssl.org/source/openssl-1.0.2-latest.tar.gz | tar --strip-components=1 -xzf - ./config --prefix=/usr/ shared make sudo make install -- GitLab