Reorder commands in build_release.py.

This should be slightly faster as the venv is only recreated once.
This commit is contained in:
Florian Bruhin 2015-06-23 23:35:20 +02:00
parent b337cfe4c6
commit 10b00da1ae

View File

@ -88,10 +88,10 @@ def build_windows():
utils.print_title("Running 32bit freeze.py build_exe")
call_freeze('build_exe', python=python_x86)
utils.print_title("Running 64bit freeze.py build_exe")
call_freeze('build_exe', python=python_x64)
utils.print_title("Running 32bit freeze.py bdist_msi")
call_freeze('bdist_msi', python=python_x86)
utils.print_title("Running 64bit freeze.py build_exe")
call_freeze('build_exe', python=python_x64)
utils.print_title("Running 64bit freeze.py bdist_msi")
call_freeze('bdist_msi', python=python_x64)