X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=jjb%2Fcsit%2Finclude-raw-csit-hc2vpp-verify-perf.sh;h=fdfdb2a1337e8128962e31ef79c6bf0bed783eb2;hb=b88cae6e809c12e33c60f0d81339fea6377e7b0f;hp=d9a5fb1f45d47fe180e075e121e75b36750737e9;hpb=e33ac91e8adc1ae679bbb13d65eaf2dc3dd4c38d;p=ci-management.git diff --git a/jjb/csit/include-raw-csit-hc2vpp-verify-perf.sh b/jjb/csit/include-raw-csit-hc2vpp-verify-perf.sh index d9a5fb1f4..fdfdb2a13 100644 --- a/jjb/csit/include-raw-csit-hc2vpp-verify-perf.sh +++ b/jjb/csit/include-raw-csit-hc2vpp-verify-perf.sh @@ -1,7 +1,7 @@ #!/bin/bash # execute csit bootstrap script if it exists -if [ ! -e bootstrap-hc2vpp-perf.sh ] +if [[ ! -e bootstrap-hc2vpp-perf.sh ]] then echo 'ERROR: No bootstrap-hc2vpp-perf.sh found' exit 1 @@ -9,11 +9,7 @@ else # make sure that bootstrap.sh is executable chmod +x bootstrap-hc2vpp-perf.sh # run the script - if [ ${STREAM} == 'master' ]; then - ./bootstrap-hc2vpp-perf.sh ${STREAM} ${OS} - else - ./bootstrap-hc2vpp-perf.sh 'stable.'${STREAM} ${OS} - fi + ./bootstrap-hc2vpp-perf.sh ${STREAM} ${OS} fi # vim: ts=4 ts=4 sts=4 et :