Thanks to visit codestin.com Credit goes to github.com
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 ebdb184 commit dde0167Copy full SHA for dde0167
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