summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2015-06-23 23:35:20 +0200
committerFlorian Bruhin <git@the-compiler.org>2015-06-23 23:35:20 +0200
commit10b00da1aedcdd970e8da0a13042574c2f60af6e (patch)
tree349701969c96317177c8bddae2d4b91b4a406b09
parentb337cfe4c6f49079e51951bba25242f64cfc54c6 (diff)
downloadqutebrowser-10b00da1aedcdd970e8da0a13042574c2f60af6e.tar.gz
qutebrowser-10b00da1aedcdd970e8da0a13042574c2f60af6e.zip
Reorder commands in build_release.py.
This should be slightly faster as the venv is only recreated once.
-rwxr-xr-xscripts/build_release.py4
1 files 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)