From: Guillaume Abrioux Date: Thu, 19 Jul 2018 13:43:24 +0000 (+0200) Subject: ceph-ansible-prs: fix a typo X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1085%2Fhead;p=ceph-build.git ceph-ansible-prs: fix a typo `$scenario` gets set by the last iteration in the loop above. The actual value we want is `$SCENARIO`. Signed-off-by: Guillaume Abrioux --- diff --git a/ceph-ansible-prs/build/build b/ceph-ansible-prs/build/build index 0177717e9..946e2fc2b 100644 --- a/ceph-ansible-prs/build/build +++ b/ceph-ansible-prs/build/build @@ -29,4 +29,4 @@ popd # stable-3.0 doesn't have ceph-volume and therefore doesn't support LVM scenarios. # Rather than running a bunch of conditional steps in the pipeline to check if # a PR is merging into the stable-3.0 branch, we'll just pass LVM jobs. -[[ "$ghprbTargetBranch" == "stable-3.0" && "$scenario" == *"lvm"* ]] || start_tox +[[ "$ghprbTargetBranch" == "stable-3.0" && "$SCENARIO" == *"lvm"* ]] || start_tox