From e40e282837df383ccc86dd4ed4ff4cff2235bede Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Thu, 4 Jul 2024 21:44:28 +0200 Subject: [PATCH] Fix bug in Windows build script --- pkgutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgutils.py b/pkgutils.py index 3a38221ec..cd8cf0a97 100755 --- a/pkgutils.py +++ b/pkgutils.py @@ -956,7 +956,7 @@ def makeWindowsEmbedded(args: argparse.Namespace) -> None: bldDir = CURR_DIR / "dist" outDir = bldDir / "novelWriter" libDir = outDir / "lib" - if outDir.exists: + if outDir.exists(): shutil.rmtree(outDir) bldDir.mkdir(exist_ok=True)