From 10b00da1aedcdd970e8da0a13042574c2f60af6e Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 23 Jun 2015 23:35:20 +0200 Subject: [PATCH] Reorder commands in build_release.py. This should be slightly faster as the venv is only recreated once. --- scripts/build_release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build_release.py b/scripts/build_release.py index e18dfab57..a9371ab53 100755 --- a/scripts/build_release.py +++ b/scripts/build_release.py @@ -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)