aboutsummaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
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)