From 8ca31a2f5e97e905375ebc735ee7d33d9cf8b2aa Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 19 May 2021 23:13:16 +0200 Subject: fixup! Add osx-old target to target 10.8. --- cdist | 4 ++-- 1 file 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': -- cgit v1.2.3