diff --git a/database/update/db-update-2016-06-22.sh b/database/update/db-update-2016-06-22.sh index 0a35d28..26dea5a 100755 --- a/database/update/db-update-2016-06-22.sh +++ b/database/update/db-update-2016-06-22.sh @@ -1,5 +1,16 @@ #!/bin/bash +# Pour Mac OS recent (10.10, Yosemite), la syntaxe du SED est differente +# Il faut donc faire une copie de ce fichier et transformer les instructions sed a l'interieur +# Pour cela, il suffit d'executer ces 2 lignes : +# cp ce_script.sh ce_script_macosx.sh +# sed -e "s/ -i / -i '' /" -i '' ce_script_macosx.sh + +if [ ! -f ../../config/app.php ] ; then +echo "Vous devez executer ce script depuis le dossier database/update/" +exit 1 +fi + username=$(grep "/\*d\*/'username'" ../../config/app.php | cut -d"'" -f4) password=$(grep "/\*d\*/'password'" ../../config/app.php | cut -d"'" -f4) database=$(grep "/\*d\*/'database'" ../../config/app.php | cut -d"'" -f4) -- libgit2 0.21.2