summaryrefslogtreecommitdiffstats
path: root/ci/deploy.sh
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2015-12-11 06:54:27 -0600
committerNarinder Gupta <narinder.gupta@canonical.com>2015-12-11 06:54:27 -0600
commit69ac76cdc58086641ed601b35689a9ea2f2aef94 (patch)
tree883409c37ebc650dac5a3b90cbb6911246d4c8a5 /ci/deploy.sh
parent85e65d41f1cdc9c9291fb5b2de29c02f0e57b405 (diff)
fix syntax error and clean the clean.sh
Change-Id: Ibb8ff7109aeda126ccb8be522b7e6d2334d54708
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index 12806253..ff01eb53 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -84,7 +84,7 @@ check_status() {
juju status > status.txt
if [ "$(grep -c "executing" status.txt )" -ge 1 ]; then
echo " still executing the reltionship within charms ..."
- if [ $timeoutiter -ge 60 ] then
+ if [ $timeoutiter -ge 60 ]; then
retval=1
fi
timeoutiter=$((timeoutiter+1))