Skip to content

Commit

Permalink
Merge pull request #55 from mwestphall/osg-23-development-no-strict-keys
Browse files Browse the repository at this point in the history
Don't use strict key checking in 23-development repos
  • Loading branch information
matyasselmeci authored Oct 9, 2023
2 parents 93cba90 + ceb46e9 commit 2000bae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/new_mashfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ esac
case $SERIES in
23*) auto_key=4d4384d0 # OSG-23-auto
developer_key=92897c00 # OSG-23-developer
STRICT_KEYS=True
case $REPO in
development) STRICT_KEYS=False ;;
*) STRICT_KEYS=True ;;
esac
;;
3.6) if [[ $DVER == el9 ]]; then
auto_key=1887c61a # OSG-4
Expand Down

0 comments on commit 2000bae

Please sign in to comment.