Skip to content

Commit

Permalink
Allow custom profile installations (if exist)
Browse files Browse the repository at this point in the history
  • Loading branch information
shsu committed Oct 26, 2012
1 parent 6c24fb8 commit 9874760
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion stackato-setup.sh
Expand Up @@ -27,7 +27,13 @@ cp -r sites/* $FS/sites
echo "Symlink to folders in shared filesystem..."
rm -fr sites
ln -s $FS/sites sites


# allow custom profile installations (if exist)
if [ -s custom-profile.sh ]
then
bash custom-profile.sh
fi

if ! [ -e $FS/INSTALLED ]
then
echo "Installing Drupal..."
Expand Down

0 comments on commit 9874760

Please sign in to comment.