From f5d1cf8a52aacd7083578eb74a815f5c1092d14f Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 25 Aug 2015 12:09:06 -0400 Subject: [PATCH] Add --no-interaction to init.sh --- init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sh b/init.sh index 06770f5..496ddb5 100755 --- a/init.sh +++ b/init.sh @@ -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"