aboutsummaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2020-04-02 11:40:50 +0200
committerMaximilian Hils <git@maximilianhils.com>2020-04-02 11:40:50 +0200
commit19aa7aeeb7aa7e66fed6e103dc19c91c55338674 (patch)
tree2470cea7cb006db4a810a919f24a32e98a7ce88c /release
parent3046a628fd0b719ff587eac5f5fd6965cd5eac89 (diff)
downloadmitmproxy-19aa7aeeb7aa7e66fed6e103dc19c91c55338674.tar.gz
mitmproxy-19aa7aeeb7aa7e66fed6e103dc19c91c55338674.tar.bz2
mitmproxy-19aa7aeeb7aa7e66fed6e103dc19c91c55338674.zip
update mypy and pin version
Diffstat (limited to 'release')
-rwxr-xr-xrelease/cibuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/cibuild.py b/release/cibuild.py
index b2bad9a0..f2fc5470 100755
--- a/release/cibuild.py
+++ b/release/cibuild.py
@@ -474,7 +474,7 @@ def build_wininstaller(be: BuildEnviron): # pragma: no cover
IB_SETUP.with_suffix(".tmp"),
reporthook=report
)
- shutil.move(IB_SETUP.with_suffix(".tmp"), IB_SETUP)
+ shutil.move(str(IB_SETUP.with_suffix(".tmp")), str(IB_SETUP))
click.echo("Install InstallBuilder...")
subprocess.run([str(IB_SETUP), "--mode", "unattended", "--unattendedmodeui", "none"], check=True)