From 19fdd54cdcb95a156e20a9247af63735b16f5a74 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Thu, 6 Aug 2015 11:01:36 -0400 Subject: [PATCH] Switched to curl when getting the tgz. --- bin/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install b/bin/install index 54ff97f1..651eb8bd 100755 --- a/bin/install +++ b/bin/install @@ -10,7 +10,7 @@ binary_url="https://${bucket_name}.s3.amazonaws.com/${tarball_name}" echo "Downloading binary: ${binary_url}" -wget -N $binary_url +curl $binary_url > $tarball_name if test -e "${tarball_name}"; then echo "Unpacking binary distribution"