We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65f546 commit 947efa1Copy full SHA for 947efa1
build_scripts/apple_utils.py
@@ -15,12 +15,11 @@
15
import sys
16
import locale
17
import os
18
+import re
19
import platform
20
import shlex
21
import subprocess
22
from typing import Optional, List
-import re
23
-from typing import Optional, List
24
25
TARGET_NATIVE = "native"
26
TARGET_X86 = "x86_64"
@@ -218,10 +217,9 @@ def CodesignFiles(files):
218
217
219
for f in files:
220
subprocess.call(['codesign', '-f', '-s', '{codesignid}'
221
- .format(codesignid=codeSignID), f],
+ .format(codesignid=codeSignID), f],
222
stdout=devout, stderr=devout)
223
224
-
225
def Codesign(install_path, verbose_output=False):
226
if not MacOS():
227
return False
0 commit comments