From fad7b1cb36dc9d5de0a7b775fdfb82778a693102 Mon Sep 17 00:00:00 2001 From: Eduardo Ramos Testillano Date: Mon, 27 Jul 2015 23:39:51 +0200 Subject: [PATCH] Fix bug in deploy --- example/diameter/launcher/DEPLOY.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.20.1