From b9e27aa4986b1e0598acf9347c5d6eb619d22a98 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 19 Jul 2018 15:43:24 +0200 Subject: [PATCH] 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 --- ceph-ansible-prs/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-ansible-prs/build/build b/ceph-ansible-prs/build/build index 0177717e..946e2fc2 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 -- 2.39.5