diff options
author | MofassirArif <Mofassir_Arif@dellteam.com> | 2016-01-21 23:56:01 -0800 |
---|---|---|
committer | MofassirArif <Mofassir_Arif@dellteam.com> | 2016-01-21 23:56:01 -0800 |
commit | bab7c5360e2bd4eabc63e3b78cb6fcea8730b608 (patch) | |
tree | 10e6ed177bd1b77a53f11042f251fba16d73cf5f /docker | |
parent | 971a7c98515a9d83661f5e423f7e8390f35dca59 (diff) |
bug-fix: fix bug in docker run file, replace $$ with &&
Change-Id: Ic48483ae97aab2f844ee753cecf5fc3714a13cdb
Signed-off-by: MofassirArif <Mofassir_Arif@dellteam.com>
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/run_qtip.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docker/run_qtip.sh b/docker/run_qtip.sh index 79c2a225..a4729c06 100755 --- a/docker/run_qtip.sh +++ b/docker/run_qtip.sh @@ -11,17 +11,17 @@ source ${QTIP_DIR}/opnfv-creds.sh if [ "$TEST_CASE" == "compute" ]; then cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f compute - cd ${QTIP_DIR}/data/ref_results/ $$ python compute_suite.py + cd ${QTIP_DIR}/data/ref_results/ && python compute_suite.py fi if [ "$TEST_CASE" == "storage" ]; then cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f storage - cd ${QTIP_DIR}/data/ref_results/ $$ python storage_suite.py + cd ${QTIP_DIR}/data/ref_results/ && python storage_suite.py fi if [ "$TEST_CASE" == "network" ]; then cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f network - cd ${QTIP_DIR}/data/ref_results/ $$ python network_suite.py + cd ${QTIP_DIR}/data/ref_results/ && python network_suite.py fi @@ -30,9 +30,9 @@ if [ "$TEST_CASE" == "all" ]; then cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f storage cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f network - cd ${QTIP_DIR}/data/ref_results/ $$ python compute_suite.py - cd ${QTIP_DIR}/data/ref_results/ $$ python storage_suite.py - cd ${QTIP_DIR}/data/ref_results/ $$ python network_suite.py + cd ${QTIP_DIR}/data/ref_results/ && python compute_suite.py + cd ${QTIP_DIR}/data/ref_results/ && python storage_suite.py + cd ${QTIP_DIR}/data/ref_results/ && python network_suite.py fi |