summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-06-17 15:41:25 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-06-17 15:44:24 +0200
commit31a4f43f7c35595a77e906eaa30d7a6b719864a9 (patch)
treeeca13e8c21fbffd2dcbf5e4cad21d7548cd15f54
parent1b7bd7de6eb29fefdde8dccc34386642e4572fb2 (diff)
downloadqutebrowser-31a4f43f7c35595a77e906eaa30d7a6b719864a9.tar.gz
qutebrowser-31a4f43f7c35595a77e906eaa30d7a6b719864a9.zip
build-release: Fix wrong path on Windows
(cherry picked from commit f13af68cac672088af46f642453ac5e4c2f2215b)
-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 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)