Skip to content

Commit

Permalink
Handle ign- prefix in release.py calls
Browse files Browse the repository at this point in the history
Fix #1102

Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Jan 8, 2024
1 parent cc59c0d commit bf58b95
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ def parse_args(argv):
args.package = args.package.replace('ign-', 'gz-')

args.package_alias = args.package
if args.package.startswith('ign-'):
args.package_alias = args.package.replace('ign-', 'ignition-')

DRY_RUN = args.dry_run
if args.upload_to_repository == 'nightly':
Expand Down

0 comments on commit bf58b95

Please sign in to comment.