summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-06-25 23:37:36 +0200
committerCarl Hetherington <cth@carlh.net>2023-06-25 23:37:37 +0200
commit4eede2937d3071c778095e971a76d804940fb340 (patch)
tree617758a4204d98e3812473f60bd3e72e8a0ca076
parentaff5f8916b50f458a066306f757e44557542c192 (diff)
We no longer need to these bundle IDs.
They were being passed to altool but when switching to notarytool it seems that these IDs were never used and can now be omitted.
-rw-r--r--cscript23
1 files changed, 1 insertions, 22 deletions
diff --git a/cscript b/cscript
index 59fcc5e75..eb73f88d0 100644
--- a/cscript
+++ b/cscript
@@ -857,28 +857,7 @@ def package(target, version, options):
if 'part' in options:
cmd += ' -b ' + options['part']
target.command(cmd)
- packages = []
- for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg'):
- a = os.path.abspath(x)
- if x.find("Player") != -1:
- packages.append((a, "com.dcpomatic.player"))
- elif x.find("Playlist Editor") != -1:
- packages.append((a, "com.dcpomatic.playlist"))
- elif x.find("KDM Creator") != -1:
- packages.append((a, "com.dcpomatic.kdm"))
- elif x.find("Batch Converter") != -1:
- packages.append((a, "com.dcpomatic.batch"))
- elif x.find("Encode Server") != -1:
- packages.append((a, "com.dcpomatic.server"))
- elif x.find("Disk Writer") != -1:
- packages.append((a, "com.dcpomatic.disk"))
- elif x.find("Combiner") != -1:
- packages.append((a, "com.dcpomatic.combiner"))
- elif x.find("Editor") != -1:
- packages.append((a, "com.dcpomatic.editor"))
- else:
- packages.append((a, "com.dcpomatic"))
- return packages
+ return glob.glob('build/platform/osx/DCP-o-matic*.dmg')
elif target.platform == 'docker':
shutil.copyfile(target.deb, 'build/platform/docker')
f = open('build/platform/docker/Dockerfile', 'w')