From 71490791e2597c8e93830fd63fcfc265fbd5e7de Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Mon, 8 Nov 2021 11:58:24 +0000 Subject: [PATCH] shot in the dark... --- builders/macosx-builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/macosx-builder.py b/builders/macosx-builder.py index eb42e9d..e51991e 100644 --- a/builders/macosx-builder.py +++ b/builders/macosx-builder.py @@ -348,7 +348,7 @@ class MacOSXBuilder(Builder): size += 10 os.chdir(os.path.dirname(self.dmg_settings_path)) - argv = ['-s', self.dmg_settings_path, '-D', 'size={size}M'.format(size=size), + argv = ['--settings', self.dmg_settings_path, '-D', 'size={size}M'.format(size=size), '-D', 'icon={icon_path}'.format(icon_path=self.icon_path), '-D', 'app={dist_app_path}'.format(dist_app_path=self.dist_app_path), dmg_title, self.dmg_file] self._run_module('dmgbuild', argv, 'Error running dmgbuild', run_name='__main__')