From d131d7b9523f88f2ea54e4364a679639ed231daf Mon Sep 17 00:00:00 2001 From: Hart Simha Date: Thu, 14 Jan 2016 14:13:18 -0800 Subject: [PATCH] Follow redirects with curl in stackato-setup.sh --- stackato-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stackato-setup.sh b/stackato-setup.sh index 6aec3a3..afc07fd 100644 --- a/stackato-setup.sh +++ b/stackato-setup.sh @@ -15,7 +15,7 @@ if ! [ -s $HOME/index.php ] # download required files echo "Downloading Drush and Drupal..." - curl -sfS $DRUSH | tar xzf - + curl -LsS $DRUSH | tar xzf - mv drush $SAR $SAR/drush/drush dl drupal --drupal-project-rename=drupal --yes @@ -23,7 +23,7 @@ if ! [ -s $HOME/index.php ] rmdir drupal echo "Downloading SMPT module..." - curl -sfS $SMTP_MODULE | tar xzf - + curl -LsS $SMTP_MODULE | tar xzf - mv smtp $SAR/app/modules/smtp fi