summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-12-30 01:34:35 +0100
committerCarl Hetherington <cth@carlh.net>2020-12-30 01:34:35 +0100
commit794336a4c3c63d48c684a9b38f3575f4f10b3759 (patch)
treea5b776daee5de2772820c06ccde58bc7903cbbfa
parent78ee0039d95bcdc0ddabd117de76dfb5c1d7953a (diff)
Rename notarize -> notarize_dmg.
-rwxr-xr-xcdist4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdist b/cdist
index 244d8f1..c28825e 100755
--- a/cdist
+++ b/cdist
@@ -728,7 +728,7 @@ class AppImageTarget(LinuxTarget):
self.privileged = True
-def notarize(dmg, bundle_id):
+def notarize_dmg(dmg, bundle_id):
p = subprocess.run(
['xcrun', 'altool', '--notarize-app', '-t', 'osx', '-f', dmg, '--primary-bundle-id', bundle_id, '-u', config.get('apple_id'), '-p', config.get('apple_password'), '--output-format', 'xml'],
capture_output=True
@@ -818,7 +818,7 @@ class OSXSingleTarget(OSXTarget):
if not isinstance(x, tuple):
raise Error('macOS packages must be returned from cscript as tuples of (dmg-filename, bundle-id)')
if not no_notarize:
- notarize(x[0], x[1])
+ notarize_dmg(x[0], x[1])
self._copy_packages(tree, [x[0] for x in p], output_dir)