MonarcAppBO/scripts/update-all.sh

94 lines
1.9 KiB
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
currentPath=`pwd`
pathCore="module/MonarcCore"
if [ -d $pathCore ]; then
pull_if_exists $pathCore
else
pathCore="vendor/monarc/core"
fi
pathBO="module/MonarcBO"
if [ -d $pathBO ]; then
pull_if_exists $pathBO
else
pathBO="vendor/monarc/backoffice"
fi
pathFO="module/MonarcFO"
if [ -d $pathFO ]; then
pull_if_exists $pathFO
else
pathFO="vendor/monarc/frontoffice"
fi
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-08-30 09:56:24 +02:00
pull_if_exists node_modules/ng_anr
2016-04-27 16:59:05 +02:00
if [ -d $pathCore ]; then
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./$pathCore/migrations/phinx.php
if [ -d "${pathCore}/hooks" ]; then
cd $pathCore/.git/hooks
ln -s ../../hooks/pre-commit.sh pre-commit 2>/dev/null
chmod u+x pre-commit
cd $currentPath
fi
2016-09-08 10:16:19 +02:00
fi
if [ -d $pathBO ]; then
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./$pathBO/migrations/phinx.php
2016-09-08 10:16:19 +02:00
if [ -d "${pathBO}/hooks" ]; then
cd $pathBO/.git/hooks
2016-09-08 10:16:19 +02:00
ln -s ../../hooks/pre-commit.sh pre-commit 2>/dev/null
chmod u+x pre-commit
cd $currentPath
2016-09-08 10:16:19 +02:00
fi
2016-08-25 15:42:05 +02:00
fi
if [ -d $pathFO ]; then
php ./vendor/robmorgan/phinx/bin/phinx migrate -c ./$pathFO/migrations/phinx.php
2016-09-08 10:16:19 +02:00
if [ -d "$pathFO/hooks" ]; then
cd $pathFO/.git/hooks
2016-09-08 10:16:19 +02:00
ln -s ../../hooks/pre-commit.sh pre-commit 2>/dev/null
chmod u+x pre-commit
cd $currentPath
2016-09-08 10:16:19 +02:00
fi
2016-08-25 15:42:05 +02:00
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
2016-11-07 14:16:58 +01:00
# Clear doctrine cache
php ./public/index.php orm:clear-cache:metadata
php ./public/index.php orm:clear-cache:query
php ./public/index.php orm:clear-cache:result
2017-01-06 16:56:29 +01:00
# Clear ZF2 cache
touch ./data/cache/upgrade && chmod 777 ./data/cache/upgrade