Skip to content

Commit

Permalink
Merge pull request #72 from matyasselmeci/pr/contrib-mashfile-fix
Browse files Browse the repository at this point in the history
Fix checking if the repo is contrib
  • Loading branch information
matyasselmeci authored Aug 1, 2024
2 parents a12d143 + 19fe711 commit afc4cee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/new_mashfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ case $SERIES in
esac

# In OSG 23+, we have a separate signing key for development versus
# promoted packages.
if [[ $REPO == development || $REPO == contrib ]]; then
# promoted packages. The development key is also used for contrib.
# The tag parsing logic does not set "$REPO" for contrib repos,
# instead it puts "contrib" in $SERIES
if [[ $REPO == development || $SERIES == *contrib* ]]; then
KEYS=$auto_key
else
KEYS=$developer_key
Expand Down

0 comments on commit afc4cee

Please sign in to comment.