Skip to content

Commit

Permalink
remove comma two branches
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh committed Jul 20, 2022
1 parent 180c2ab commit 9c9a0f0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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-*'
}
Expand Down
2 changes: 1 addition & 1 deletion release/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9c9a0f0

Please sign in to comment.