Fix buildbot error building release on macOS

This commit is contained in:
Brecht Van Lommel 2019-09-07 16:34:38 +02:00
parent ea6992d0e5
commit 708e81bdfa

View File

@ -88,13 +88,13 @@ def pack_mac(builder):
release_dir = os.path.join(builder.blender_dir, 'release', 'darwin') release_dir = os.path.join(builder.blender_dir, 'release', 'darwin')
bundle_sh = os.path.join(release_dir, 'bundle.sh') bundle_sh = os.path.join(release_dir, 'bundle.sh')
if info.is_development_build:
background_image = os.path.join(release_dir, 'buildbot', 'background.tif')
command = [bundle_sh] command = [bundle_sh]
command += ['--source', builder.install_dir] command += ['--source', builder.install_dir]
command += ['--dmg', package_filepath] command += ['--dmg', package_filepath]
command += ['--background-image', background_image] if info.is_development_build:
background_image = os.path.join(release_dir, 'buildbot', 'background.tif')
command += ['--background-image', background_image]
buildbot_utils.call(command) buildbot_utils.call(command)
create_buildbot_upload_zip(builder, [(package_filepath, package_filename)]) create_buildbot_upload_zip(builder, [(package_filepath, package_filename)])