Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stackato-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ 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
mv drupal/* drupal/.??* .
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

Expand Down