diff --git a/ci/install.sh b/ci/install.sh index 03b2ce53ab872c455a235b6610450e4ed6116950..7de626b514433f1e73f449aac6d1304ab924ec65 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -1,11 +1,19 @@ #!/bin/bash # Ce script est utilisé pour paramétrer l'environnement du site -if [ -e "./app/env" ] +if [ 'x$PROD_HOME' -ne 'x' ] then - source app/env + HOME=$PROD_HOME +else + HOME=/var/www/dons/ fi -cd /home/don/don +if [ -e "$HOME/app/env"] + then + source $HOME/app/env + fi +fi + +cd $HOME git reset --hard git pull origin $CI_BUILD_REF_NAME git checkout $CI_BUILD_REF_NAME @@ -16,7 +24,7 @@ composer install --no-dev composer update # Let's run the migrations -if [ -e "phinx.yml" ] +if [ -e "$HOME/phinx.yml" ] then case $CI_BUILD_REF_NAME in master)