summaryrefslogtreecommitdiffstats
path: root/jjb/apex/apex-iso-verify.sh
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2018-09-28 15:09:31 -0400
committerTim Rozet <trozet@redhat.com>2018-09-28 15:09:31 -0400
commitfca363d44c64cbdf5484f30c21d901de5ee8c368 (patch)
tree33990653f124df5c48c41f3221f295c3dc482f20 /jjb/apex/apex-iso-verify.sh
parentf836a454d1ef4ac2375dd13694227764af433755 (diff)
Apex: Fixes branch checking
With the move to upstream artifacts post-fraser the checks to use upstream artifacts were relying on BRANCH == 'master'. This doesn't scale as we preserve fraser functionality but add more branches like gambia. Therefore inversing the logic to accomodate for new branches. Change-Id: Ice17f6afd33744f44d253d320a194c3f6d02d8bf Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'jjb/apex/apex-iso-verify.sh')
-rwxr-xr-xjjb/apex/apex-iso-verify.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/apex/apex-iso-verify.sh b/jjb/apex/apex-iso-verify.sh
index f34937619..c29d7cb32 100755
--- a/jjb/apex/apex-iso-verify.sh
+++ b/jjb/apex/apex-iso-verify.sh
@@ -8,8 +8,8 @@ echo "Starting the Apex iso verify."
echo "--------------------------------------------------------"
echo
-if [ "$BRANCH" == 'master' ]; then
- echo "Skipping Apex iso verify for master branch"
+if [ "$BRANCH" != 'stable/fraser' ]; then
+ echo "Skipping Apex iso verify for ${BRANCH} branch"
exit 0
fi