FIX: script client-upgrade-db > test path

pull/8/head
Thomas Metois 2017-03-17 14:37:49 +01:00
parent 0e980a593e
commit 460dc827bf
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
;;