Skip to content

Commit

Permalink
cli.py: Fix incantation order
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Aug 28, 2024
1 parent 1faa112 commit 8f119bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions metal_libraries/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ def build_pkg(input: str, pkg_signing_identity: str = None, notarization_team_id

if all([notarization_team_id, notarization_apple_id, notarization_password]):
mac_signing_buddy.Notarize(
f"MetallibSupportPkg-{name}.pkg",
notarization_team_id,
notarization_apple_id,
notarization_password
file=f"MetallibSupportPkg-{name}.pkg",
team_id=notarization_team_id,
apple_id=notarization_apple_id,
password=notarization_password
).sign()

print(f"MetallibSupportPkg-{name}.pkg")
Expand Down

0 comments on commit 8f119bc

Please sign in to comment.