FIX: script client-upgrade-db > test path

pull/1/head
Thomas Metois 2017-03-17 14:38:22 +01:00
parent 417f807798
commit d12484b33b
1 changed files with 3 additions and 3 deletions

View File

@ -13,19 +13,19 @@ path=""
case $MODULE in
"MonarcCore"|"core")
path="module/MonarcCore"
if [ ! -d $pathCore ]; then
if [ ! -d $path ]; then
path="vendor/monarc/core"
fi
;;
"MonarcFO"|"frontoffice")
path="module/MonarcFO"
if [ ! -d $pathCore ]; then
if [ ! -d $path ]; then
path="vendor/monarc/frontoffice"
fi
;;
"MonarcBO"|"backoffice")
path="module/MonarcBO"
if [ ! -d $pathCore ]; then
if [ ! -d $path ]; then
path="vendor/monarc/backoffice"
fi
;;