mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Don't error if php artisan down/up fails
This commit is contained in:
parent
917b28013a
commit
822c91c427
1 changed files with 2 additions and 2 deletions
4
init.sh
4
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
|
||||
|
|
Loading…
Reference in a new issue