From 822c91c4274421800ebc3e0c8faf607a5876bb6b Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 28 Oct 2015 10:03:33 -0400 Subject: [PATCH] Don't error if php artisan down/up fails --- init.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.sh b/init.sh index 2d2394e..a6b03b1 100755 --- a/init.sh +++ b/init.sh @@ -51,7 +51,7 @@ trap 'error "script killed"' SIGINT SIGQUIT } msg "Running: ${c_m}php artisan down" -php artisan down || error "${c_m}php artisan down$c_w exited with an error status" +php artisan down msg "Running: ${c_m}composer installl --no-dev" composer install --no-interaction --no-dev || error "${c_m}composer install --no-interaction --no-dev$c_w exited with an error status" @@ -69,4 +69,4 @@ msg "Running: ${c_m}gulp --production" gulp --production || error "${c_m}gulp --production$c_w exited with an error status" msg "Running: ${c_m}php artisan up" -php artisan up || error "${c_m}php artisan up$c_w exited with an error status" +php artisan up