We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 331bfb5 commit 8e31332Copy full SHA for 8e31332
tools/make_installer.py
@@ -43,6 +43,14 @@
43
def main():
44
command_line_args()
45
46
+ # Make sure pyinstaller build/dist directories do not exist,
47
+ # otherwise they would be packed along with examples and thus
48
+ # increase package size significantly.
49
+ assert not os.path.exists(os.path.join(EXAMPLES_DIR,
50
+ "pyinstaller", "build"))
51
52
+ "pyinstaller", "dist"))
53
+
54
# Setup and package directories
55
global SETUP_DIR, PKG_DIR
56
setup_dir_name = get_setup_installer_basename(VERSION, OS_POSTFIX2)
0 commit comments