From e73ac7c580cd3cdbe27d37e6ecdf3420d7e18990 Mon Sep 17 00:00:00 2001 From: Billy Tat Date: Fri, 11 Dec 2015 14:25:18 -0800 Subject: [PATCH 1/2] Specify compatible buildpack version --- manifest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.yml b/manifest.yml index f2b2711..764b1ab 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,6 +1,6 @@ applications: - name: drupal - buildpack: https://github.com/heroku/heroku-buildpack-php.git + buildpack: https://github.com/heroku/heroku-buildpack-php#v82 instances: 1 memory: 256M services: From d131d7b9523f88f2ea54e4364a679639ed231daf Mon Sep 17 00:00:00 2001 From: Hart Simha Date: Thu, 14 Jan 2016 14:13:18 -0800 Subject: [PATCH 2/2] 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