Add --no-interaction to init.sh

This commit is contained in:
Kevin MacMartin 2015-08-25 12:09:06 -04:00
parent 74776cb69a
commit f5d1cf8a52

View file

@ -51,7 +51,7 @@ trap 'error "script killed"' SIGINT SIGQUIT
}
msg "Running: ${c_m}composer installl --no-dev"
composer install --no-dev || error "${c_m}composer install --no-dev$c_w exited with an error status"
composer install --no-interaction --no-dev || error "${c_m}composer install --no-interaction --no-dev$c_w exited with an error status"
msg "Running: ${c_m}php artisan migrate"
php artisan migrate || error "${c_m}php artisan migrate$c_w exited with an error status"