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 22:37:06 +0000 |
commit | 1b3310e21276d29a0b6fbe520fb41cfb8588e48a (patch) | |
tree | 1581753dc8562363ae26fb5cb180dd1715aed50b /docker | |
parent | f90f81568050962261347d998eb6914d375395f6 (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>
(cherry picked from commit 14d783b94e759139d1edd54bc312fe2811080e4f)
Diffstat (limited to 'docker')
-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 |