Skip to content

Commit dbbddb1

Browse files
committedApr 6, 2024·
Remove the no longer used --notarization_id flag.
PiperOrigin-RevId: 622387143
1 parent 0225743 commit dbbddb1

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed
 

‎src/build_tools/codesign_mac.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ def ParseOption():
131131
default=False)
132132
parser.add_option("--verify", dest="verify", action="store_true",
133133
default=False)
134-
parser.add_option("--notarization_id", dest="notarization_id")
135134
parser.add_option("--output", dest="output")
136135
(options, unused_args) = parser.parse_args()
137136

@@ -150,7 +149,7 @@ def DumpEnviron():
150149
print("==================")
151150

152151

153-
def Notarize(target, bundle_id):
152+
def Notarize(target):
154153
"""Execute the notariazation commands."""
155154

156155

@@ -170,9 +169,7 @@ def main():
170169
UnlockKeychain(keychain, opts.password)
171170

172171
Codesign(opts.target, keychain=keychain)
173-
174-
if opts.notarization_id:
175-
Notarize(opts.target, opts.notarization_id)
172+
Notarize(opts.target)
176173

177174
# Output something to make the processes trackable.
178175
if opts.output:

0 commit comments

Comments
 (0)
Please sign in to comment.