From 31a4f43f7c35595a77e906eaa30d7a6b719864a9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 17 Jun 2022 15:41:25 +0200 Subject: build-release: Fix wrong path on Windows (cherry picked from commit f13af68cac672088af46f642453ac5e4c2f2215b) --- scripts/dev/build_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index ac0f6b7f7..0fdd63a57 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -402,7 +402,7 @@ def _build_windows_single( dist_path = pathlib.Path("dist") arch = "x64" if x64 else "x86" - out_path = dist_path / 'dist' / f'qutebrowser-{qutebrowser.__version__}-{arch}' + out_path = dist_path / f'qutebrowser-{qutebrowser.__version__}-{arch}' _maybe_remove(out_path) python = _get_windows_python_path(x64=x64) -- cgit v1.2.3-54-g00ecf