Skip to content

Commit

Permalink
make sure artisan path is correct
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmanders committed Oct 30, 2013
1 parent d127cd1 commit 0d06f16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vagrant/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# CONFIGURATION VARIABLES
MYSQL_PASSWORD='root'
LARAVEL_PROJECT=false
LARAVEL_PROJECT=true

echo "--- Good morning, master. Let's get to work. Installing now. ---"

Expand Down Expand Up @@ -62,9 +62,9 @@ if $LARAVEL_PROJECT; then
echo "--- Lets make sure the app storage directory is writable. ---"
chmod -R o+w /vagrant/app/storage
echo "--- Migrate the database for Laravel project ---"
php artisan migrate --env=local
php /vagrant/artisan migrate --env=local
echo "--- Now lets run the db:seed command! ---"
php artisan db:seed --env=local
php /vagrant/artisan db:seed --env=local
fi

echo "--- All set to go! Would you like to play a game? ---"

0 comments on commit 0d06f16

Please sign in to comment.