summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-28 09:31:26 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-28 09:31:36 +0100
commit447511f816279c798b27d31775a5a5cabe0d7bf0 (patch)
tree2aa28d0b5af91d987d86c7918e524d6d02224fc3
parentb716e765b9a0c8ec90e9a2be44ec2dbc04f036eb (diff)
downloadqutebrowser-447511f816279c798b27d31775a5a5cabe0d7bf0.tar.gz
qutebrowser-447511f816279c798b27d31775a5a5cabe0d7bf0.zip
scripts: Actually use 32-bit Python on Windows
(cherry picked from commit d3b8b525b71a4ee24244e5f4fa0ab91631712abd)
-rwxr-xr-xscripts/dev/build_release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index 62cf6c58b..bd16026e1 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -274,7 +274,7 @@ def _build_windows_single(*, x64, skip_packaging):
'dist', f'qutebrowser-{qutebrowser.__version__}-{"x64" if x64 else "x86"}')
_maybe_remove(outdir)
- python = _get_windows_python_path(x64=True)
+ python = _get_windows_python_path(x64=x64)
call_tox(f'pyinstaller-{"64" if x64 else "32"}', '-r', python=python)
out_pyinstaller = os.path.join('dist', 'qutebrowser')