X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=cf1f65a84fd9b0046ce5eea32aebb87d97ad884a;hb=98342fb53eae4d32440fc69c279f2ca0fef785b5;hp=22c719ea0dac3c7c57d9f39b22543426601d948a;hpb=749c7b0098feb893c2a11012eb889fda0043666d;p=dcpomatic.git diff --git a/cscript b/cscript index 22c719ea0..cf1f65a84 100644 --- a/cscript +++ b/cscript @@ -640,10 +640,10 @@ def package(target, version, options): elif target.distro == 'centos' or target.distro == 'fedora' or target.distro == 'mageia': return package_rpm(target, cpu, version, options) elif target.platform == 'osx' and target.bits is None: - target.command('bash platform/osx/make_dmg.sh %s %s universal' % (target.environment_prefix, target.directory)) + target.command('bash platform/osx/make_dmg.sh %s %s universal %s %s' % (target.environment_prefix, target.directory, target.apple_id, target.apple_password)) return [os.path.abspath(x) for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg')] elif target.platform == 'osx' and target.bits == 64: - target.command('bash platform/osx/make_dmg.sh %s %s thin' % (target.environment_prefix, target.directory)) + target.command('bash platform/osx/make_dmg.sh %s %s thin %s %s' % (target.environment_prefix, target.directory, target.apple_id, target.apple_password)) return [os.path.abspath(x) for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg')] elif target.platform == 'docker': shutil.copyfile(target.deb, 'build/platform/docker')