diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-01-17 20:20:31 +0100 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-01-17 20:20:31 +0100 |
commit | 14d783b94e759139d1edd54bc312fe2811080e4f (patch) | |
tree | 1581753dc8562363ae26fb5cb180dd1715aed50b | |
parent | 3fd283023ebd04195a8ae5688376d83722bc1aab (diff) |
Replace command "pass" in the shell script by ":"
"pass" is a python command, not bash. ":" is the equivalent.
Change-Id: Ied93813308599479b82729c66c10397135477a47
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
-rwxr-xr-x | docker/run_tests.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 2225791a4..97bbfefec 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -69,11 +69,11 @@ function run_test(){ if [ $INSTALLER_TYPE == "fuel" ]; then odl_port=8282 elif [ $INSTALLER_TYPE == "apex" ]; then - pass + : elif [ $INSTALLER_TYPE == "joid" ]; then - pass + : elif [ $INSTALLER_TYPE == "compass" ]; then - pass + : else error "INSTALLER_TYPE not valid." exit 1 |