EVO: script-update > check if node_modules are installed else use "npm install"
parent
5e31b15fbc
commit
754e319f3f
|
@ -33,9 +33,18 @@ else
|
||||||
pathFO="vendor/monarc/frontoffice"
|
pathFO="vendor/monarc/frontoffice"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pull_if_exists node_modules/ng_backoffice
|
if [[ -d node_modules && -d node_modules/ng_anr ]]; then
|
||||||
pull_if_exists node_modules/ng_client
|
if [[ -d node_modules/ng_anr/.git ]]; then
|
||||||
pull_if_exists node_modules/ng_anr
|
pull_if_exists node_modules/ng_backoffice
|
||||||
|
pull_if_exists node_modules/ng_client
|
||||||
|
pull_if_exists node_modules/ng_anr
|
||||||
|
else
|
||||||
|
npm update
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
npm install
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [ -d $pathCore ]; then
|
if [ -d $pathCore ]; then
|
||||||
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./$pathCore/migrations/phinx.php
|
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./$pathCore/migrations/phinx.php
|
||||||
|
|
Loading…
Reference in New Issue