X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=jjb%2Fcsit%2Finclude-raw-csit-hc2vpp-verify-perf.sh;h=fdfdb2a1337e8128962e31ef79c6bf0bed783eb2;hb=4f10c4fe272e403fd34ab40e443b4675531315b2;hp=d9a5fb1f45d47fe180e075e121e75b36750737e9;hpb=29e8928eeee2321ef1887c1f1f49bce918daef57;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 :