aboutsummaryrefslogtreecommitdiffstats
path: root/release/cibuild.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2020-04-03 10:44:18 +0200
committerGitHub <noreply@github.com>2020-04-03 10:44:18 +0200
commit0b76afdf5759d229f5657d447866691c433caf45 (patch)
tree38bf43062cfd55780db271d71604199e1fd242de /release/cibuild.py
parent49bc7d944a94f2e4bb0f7b9572234a5b67cb0fb2 (diff)
parent19aa7aeeb7aa7e66fed6e103dc19c91c55338674 (diff)
downloadmitmproxy-0b76afdf5759d229f5657d447866691c433caf45.tar.gz
mitmproxy-0b76afdf5759d229f5657d447866691c433caf45.tar.bz2
mitmproxy-0b76afdf5759d229f5657d447866691c433caf45.zip
Merge pull request #3882 from mhils/pin-mypy
Update mypy and pin version
Diffstat (limited to 'release/cibuild.py')
-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)