summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcdist4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdist b/cdist
index a003351..626f408 100755
--- a/cdist
+++ b/cdist
@@ -812,7 +812,7 @@ class OSXTarget(Target):
class OSXSingleTarget(OSXTarget):
- def __init__(self, arch, sdk, deployment, can_notarize=True, directory=None):
+ def __init__(self, arch, sdk, deployment, directory=None, can_notarize=True):
super(OSXSingleTarget, self).__init__(directory)
self.arch = arch
self.sdk = sdk
@@ -940,7 +940,7 @@ def target_factory(args):
elif s == 'osx-intel':
target = OSXSingleTarget('x86_64', config.get('osx_sdk'), config.get('osx_intel_deployment'), args.work)
elif s == 'osx-old':
- target = OSXSingleTarget('x86_64', config.get('osx_sdk'), config.get('osx_old_deployment'), can_notarize=False, directory=args.work)
+ target = OSXSingleTarget('x86_64', config.get('osx_sdk'), config.get('osx_old_deployment'), args.work, False)
elif s == 'source':
target = SourceTarget()
elif s == 'flatpak':