From d2b976d8662b1387bb076832f4c205be9f0cca05 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 Oct 2023 08:31:42 +0530 Subject: [PATCH] Remove portable installer manifest file as it is embedded --- bypy/windows/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bypy/windows/__main__.py b/bypy/windows/__main__.py index 1122a3a0b6..ba6aaad858 100644 --- a/bypy/windows/__main__.py +++ b/bypy/windows/__main__.py @@ -319,6 +319,7 @@ def build_portable_installer(env): 'Ole32.lib', 'Shlwapi.lib', 'Kernel32.lib', 'Psapi.lib'] run(*cmd) os.remove(zf) + os.remove(manifest) def build_portable(env):