summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-24 01:27:46 +0200
committerCarl Hetherington <cth@carlh.net>2020-04-24 01:27:46 +0200
commitd07c4241b58fc654cf0331d09d0814b4d6a24743 (patch)
treed52f867d773a7fc0eae1f720e35925b4d3cb96e7 /cscript
parent59acc57304a545d0cad49ad204d32d3f84dbbfa2 (diff)
Remove disk-build optional stuff from macOS build.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index cbbfa02a2..a90e5f6bd 100644
--- a/cscript
+++ b/cscript
@@ -678,7 +678,7 @@ def package(target, version, options):
target.command('bash platform/osx/make_dmg.sh %s %s universal no %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 %s %s %s' % (target.environment_prefix, target.directory, "yes" if options['disk'] else "no", target.apple_id, target.apple_password))
+ 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')