From 26c1dbb1ca11ada432ffbc581bb11e61c6952862 Mon Sep 17 00:00:00 2001 From: Brielle Date: Sat, 27 Feb 2016 15:11:36 -0700 Subject: [PATCH] Fixing a few things... --- get-letsencrypt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get-letsencrypt.sh b/get-letsencrypt.sh index 3295f9f..e6ccff3 100755 --- a/get-letsencrypt.sh +++ b/get-letsencrypt.sh @@ -13,7 +13,7 @@ # Where to store the LetsEncrypt package DESTDIR="/usr/src/" -ZIPURL="https://codeload.github.com/letsencrypt/letsencrypt/zip/master" +ZIPURL="https://github.com/letsencrypt/letsencrypt/archive/master.zip" GITREPO="https://github.com/letsencrypt/letsencrypt" if [ $# -eq 0 ]; then @@ -40,7 +40,7 @@ case $downloadtype in ;; zip) echo "Downloading ${ZIPURL} into ${DESTDIR}" - curl -o letsencrypt.zip ${ZIPURL} + curl -L -o letsencrypt.zip ${ZIPURL} unzip letsencrypt.zip ;; esac \ No newline at end of file