diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-02-16 22:24:43 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-02-16 22:24:43 -0600 |
commit | 356571b808a65f530b2fbc8de9b042fa06ea2300 (patch) | |
tree | 410dfb81234c03bd5a0b2fa451d64b54d7e26ce6 | |
parent | 2231685f54139031fe36357b5080420a0738a905 (diff) |
change integer to string comparison
Change-Id: I6b99d73dfd62a292a295d357424109164e493fc7
-rwxr-xr-x | ci/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index bb41ef74..f9aadaa9 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -163,7 +163,7 @@ unitAddress() createopenrc() { - if [ "$opnfvsdn" -eq "onos" ]; then + if [ "$opnfvsdn" == "onos" ]; then sh onos/juju_test_prepare.sh "$opnfvlab" check_status fi |