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:41:25 +0200
commitf13af68cac672088af46f642453ac5e4c2f2215b (patch)
treed3afce2bed7a9380d88cf0ec927690331d146510
parent9be162e331446438ebd0d4210ba470e4a0536f5a (diff)
downloadqutebrowser-f13af68cac672088af46f642453ac5e4c2f2215b.tar.gz
qutebrowser-f13af68cac672088af46f642453ac5e4c2f2215b.zip
build-release: Fix wrong path on Windows
-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)