summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-10-09 19:17:48 +0100
committerCarl Hetherington <cth@carlh.net>2016-10-12 00:33:27 +0100
commit2f654df86d5f4b6433c55801e49edfd0089b1bc1 (patch)
tree444217575aacaa6e039cf03d34f73db7c91ad8d4 /cscript
parentb55c6c5496f6c8248dd51bbcaecb80ef0efcbadb (diff)
Make 4 separate .dmgs for OS X rather than using the previous
symlink hack.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 6e41ff784..ef9ce17fb 100644
--- a/cscript
+++ b/cscript
@@ -364,7 +364,7 @@ def package(target, version):
return package_rpm(target, cpu, version)
elif target.platform == 'osx':
target.command('bash platform/osx/make_dmg.sh %s' % target.directory)
- return os.path.abspath(glob.glob('build/platform/osx/DCP-o-matic*.dmg')[0])
+ return [os.path.abspath(x) for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg')]
def make_pot(target):
target.command('./waf pot')