mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Run bower prune before running bower install in init.sh
This commit is contained in:
parent
26848d1f07
commit
c9d6b0a29c
1 changed files with 2 additions and 2 deletions
4
init.sh
4
init.sh
|
@ -73,8 +73,8 @@ php artisan migrate || error "${c_m}php artisan migrate$c_w exited with an error
|
|||
msg "Running: ${c_m}npm install"
|
||||
npm install --production || error "${c_m}npm install$c_w exited with an error status"
|
||||
|
||||
msg "Running: ${c_m}bower install"
|
||||
bower install || error "${c_m}bower install$c_w exited with an error status"
|
||||
msg "Running: ${c_m}bower prune && bower install"
|
||||
bower prune && bower install || error "${c_m}bower prune && bower install$c_w exited with an error status"
|
||||
|
||||
msg "Running: ${c_m}gulp --production"
|
||||
gulp --production || error "${c_m}gulp --production$c_w exited with an error status"
|
||||
|
|
Loading…
Reference in a new issue