MonarcAppFO/scripts/update-all.sh

46 lines
912 B
Bash
Raw Normal View History

2016-04-27 16:59:05 +02:00
#!/bin/bash
pull_if_exists() {
if [ -d $1 ]; then
pushd $1
git pull
popd
fi
}
git pull
php composer.phar update -o
2016-04-27 16:59:05 +02:00
pull_if_exists module/MonarcCore
pull_if_exists module/MonarcBO
2016-08-25 15:42:05 +02:00
pull_if_exists module/MonarcFO
2016-04-27 16:59:05 +02:00
pull_if_exists node_modules/ng_backoffice
2016-08-25 15:42:05 +02:00
pull_if_exists node_modules/ng_client
2016-04-27 16:59:05 +02:00
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/MonarcCore/migrations/phinx.php
2016-08-25 15:42:05 +02:00
if [ -d module/MonarcBO ]; then
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/MonarcBO/migrations/phinx.php
fi
if [ -d module/MonarcFO ]; then
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./module/MonarcFO/migrations/phinx.php
fi
2016-04-27 16:59:05 +02:00
if [ -d node_modules/ng_backoffice ]; then
cd node_modules/ng_backoffice
npm install
cd ../..
fi
2016-08-25 15:42:05 +02:00
if [ -d node_modules/ng_client ]; then
cd node_modules/ng_client
npm install
cd ../..
fi
2016-04-27 16:59:05 +02:00
./scripts/link_modules_resources.sh
./scripts/compile_translations.sh