From: Eduardo Ramos Testillano Date: Mon, 27 Jul 2015 21:39:51 +0000 (+0200) Subject: Fix bug in deploy X-Git-Tag: REFACTORING_TESTING_LIBRARY~121 X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=commitdiff_plain;h=fad7b1cb36dc9d5de0a7b775fdfb82778a693102 Fix bug in deploy --- diff --git a/example/diameter/launcher/DEPLOY.sh b/example/diameter/launcher/DEPLOY.sh index 7963f07..f83ec69 100755 --- a/example/diameter/launcher/DEPLOY.sh +++ b/example/diameter/launcher/DEPLOY.sh @@ -199,7 +199,7 @@ mkdir -p $DPATH mkdir -p $DPATH/stacks mkdir -p $DPATH/DTDs mkdir -p $DPATH/counters -[ "option" = "b" ] && mkdir -p $DPATH/services +[ "$option" = "b" ] && mkdir -p $DPATH/services if [ "$EXEC" = "$EXEC_installed" ] then ln -s $EXEC_installed $DPATH/ADML-launcher @@ -213,7 +213,7 @@ cp $SETUPS_DIR/readme.txt $DPATH/stacks cp $MSGDTD $DPATH/DTDs cp $DCTDTD $DPATH/DTDs cp $SRVDTD $DPATH/DTDs -[ "option" = "b" ] && cp $SERVICES/* $DPATH/services +[ "$option" = "b" ] && cp $SERVICES/* $DPATH/services echo "Preparing ..." cd $DPATH