From c3a1a383e82d2eb8e20b8259ef1d710516692b22 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Wed, 20 Jul 2022 14:27:10 -0700 Subject: [PATCH] remove comma two branches old-commit-hash: 9c9a0f0ef35933e354c52b39cfe9e7849f1d8d7e --- Jenkinsfile | 1 - release/verify.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4e13717851..b8ed52611d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,7 +70,6 @@ pipeline { not { anyOf { branch 'master-ci'; branch 'devel'; branch 'devel-staging'; - branch 'release2'; branch 'release2-staging'; branch 'dashcam'; branch 'dashcam-staging'; branch 'release3'; branch 'release3-staging'; branch 'dashcam3'; branch 'dashcam3-staging'; branch 'testing-closet*'; branch 'hotfix-*' } diff --git a/release/verify.sh b/release/verify.sh index 2ebd50a29d..56f21183f1 100755 --- a/release/verify.sh +++ b/release/verify.sh @@ -6,7 +6,7 @@ RED="\033[0;31m" GREEN="\033[0;32m" CLEAR="\033[0m" -BRANCHES="devel dashcam dashcam3 release2 release3" +BRANCHES="devel dashcam3 release3" for b in $BRANCHES; do if git diff --quiet origin/$b origin/$b-staging && [ "$(git rev-parse origin/$b)" = "$(git rev-parse origin/$b-staging)" ]; then printf "%-10s $GREEN ok $CLEAR\n" "$b"