From 17969713a5c2a3e22fd2886f22a14607b3d5c6ea Mon Sep 17 00:00:00 2001 From: Anthony Young Date: Tue, 13 Sep 2011 10:57:25 -0700 Subject: [PATCH] missing semi-colon --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index c72a3af..d1eba98 100755 --- a/stack.sh +++ b/stack.sh @@ -252,7 +252,7 @@ rm -f $GLANCE_DIR/glance.sqlite function screen_it { screen -S nova -X screen -t $1 # only run the services specified in $ENABLED_SERVICES - if [[ $ENABLED_SERVICES == *$2* ]] then + if [[ $ENABLED_SERVICES == *$2* ]]; then screen -S nova -p $1 -X stuff "$2$NL" fi }