diff options
author | Brian Freeman <bf1936@att.com> | 2019-07-29 21:02:34 -0500 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2019-07-29 21:02:41 -0500 |
commit | 1367ea56a7b0e66ac70f794411a6025c613121f8 (patch) | |
tree | 2723a0fb3bc56ccea87aa0e12a8d2ee72d234175 | |
parent | 6ad31604f373afdb5dbcf4ff0655f5e1755c13b8 (diff) |
Fix missing quote on VARIABLESFILES
Issue-ID: TEST-165
Change-Id: Iad630a7b4a61f0308550eb77a0f71e51f0fdbbc1
Signed-off-by: Brian Freeman <bf1936@att.com>
-rwxr-xr-x | demo-k8s.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo-k8s.sh b/demo-k8s.sh index 84de270..9b98c87 100755 --- a/demo-k8s.sh +++ b/demo-k8s.sh @@ -218,6 +218,6 @@ export GLOBAL_BUILD_NUMBER=$(kubectl --namespace $NAMESPACE exec ${POD} -- bas OUTPUT_FOLDER=$(printf %04d $GLOBAL_BUILD_NUMBER)_demo_$key DISPLAY_NUM=$(($GLOBAL_BUILD_NUMBER + 90)) -VARIABLEFILES="-V /share/config/vm_properties.py -V /share/config/integration_robot_properties.py +VARIABLEFILES="-V /share/config/vm_properties.py -V /share/config/integration_robot_properties.py" kubectl --namespace $NAMESPACE exec ${POD} -- ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/${OUTPUT_FOLDER} -i ${TAG} --display $DISPLAY_NUM 2> ${TAG}.out |