Skip to content

Commit

Permalink
Merge pull request #73 from matyasselmeci/pr/empty-mashfile-fix
Browse files Browse the repository at this point in the history
"empty" needs the same fix as #71 and #72
  • Loading branch information
matyasselmeci authored Aug 1, 2024
2 parents afc4cee + 2ddb217 commit 8aa3f7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/new_mashfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ esac
# In OSG 23+, we have a separate signing key for development versus
# 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
# instead it puts "contrib" in $SERIES. Same for empty.
if [[ $REPO == development || $SERIES == *contrib* || $SERIES == *empty* ]]; then
KEYS=$auto_key
else
KEYS=$developer_key
Expand Down

0 comments on commit 8aa3f7a

Please sign in to comment.