Remove installer pdb file

This commit is contained in:
Kovid Goyal 2023-10-11 08:33:22 +05:30
parent d2b976d866
commit 6290f15f93
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -69,6 +69,8 @@ def create_installer(env, compression_level='9'):
'-d', 'WixUILicenseRtf=' + license, '-d', 'WixUIBannerBmp=' + banner, '-d', 'WixUIDialogBmp=' + dialog, '-d', 'WixUILicenseRtf=' + license, '-d', 'WixUIBannerBmp=' + banner, '-d', 'WixUIDialogBmp=' + dialog,
'-o', installer, wxsf] '-o', installer, wxsf]
run(*cmd) run(*cmd)
pdb = installer.rsplit('.')[0] + '.wixpdb'
os.remove(pdb)
def get_components_from_files(env): def get_components_from_files(env):