From 299a5788e2ff2839a07192762406ec520eca78e3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 10 Oct 2023 18:46:09 +0530 Subject: [PATCH] ... --- bypy/windows/wix.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bypy/windows/wix.py b/bypy/windows/wix.py index 6291b88c02..20fd050d04 100644 --- a/bypy/windows/wix.py +++ b/bypy/windows/wix.py @@ -58,11 +58,8 @@ def create_installer(env): license = j(env.src_root, 'LICENSE.rtf') banner = j(env.src_root, 'icons', 'wix-banner.bmp') dialog = j(env.src_root, 'icons', 'wix-dialog.bmp') - cmd = [WIX, 'build', '-arch', arch, '-culture', 'en-us', '-loc', enusf, '-o', installer, - '-dWixUILicenseRtf=' + license, - '-dWixUIBannerBmp=' + banner, - '-dWixUIDialogBmp=' + dialog] - cmd.append('-sval') # Disable all checks since they fail when running under ssh + cmd = [WIX, 'build', '-arch', arch, '-culture', 'en-us', '-loc', enusf, + '-d', 'WixUILicenseRtf=' + license, '-d', 'WixUIBannerBmp=' + banner, '-d', 'WixUIDialogBmp=' + dialog, '-o', installer] run(*cmd)