From 6290f15f937ca29335057c9876c8440a49dea8ed Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 Oct 2023 08:33:22 +0530 Subject: [PATCH] Remove installer pdb file --- bypy/windows/wix.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bypy/windows/wix.py b/bypy/windows/wix.py index 5e101dc21e..4e89bda817 100644 --- a/bypy/windows/wix.py +++ b/bypy/windows/wix.py @@ -69,6 +69,8 @@ def create_installer(env, compression_level='9'): '-d', 'WixUILicenseRtf=' + license, '-d', 'WixUIBannerBmp=' + banner, '-d', 'WixUIDialogBmp=' + dialog, '-o', installer, wxsf] run(*cmd) + pdb = installer.rsplit('.')[0] + '.wixpdb' + os.remove(pdb) def get_components_from_files(env):