Don't rely on py2exe to create the dist dir.

This commit is contained in:
Assaf Carlsbad
2020-01-15 14:18:43 +02:00
committed by BrentHoltsclaw
parent a2304c14e9
commit cf79dbb2ed
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -100,6 +100,10 @@ for current, dirs, files in os.walk(tool_dir ):
mypackages.append(pkg)
print(pkg)
# Don't rely on py2exe to create the dist dir
if not os.path.exists(win_7_amd64):
os.makedirs(win_7_amd64)
from distutils.core import setup
+4
View File
@@ -100,6 +100,10 @@ for current, dirs, files in os.walk(tool_dir ):
mypackages.append(pkg)
print(pkg)
# Don't rely on py2exe to create the dist dir
if not os.path.exists(win_7_x86):
os.makedirs(win_7_x86)
from distutils.core import setup