Skip to content

Commit

Permalink
Fix bug in Windows build script
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo committed Jul 4, 2024
1 parent eba0fa5 commit e40e282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e40e282

Please sign in to comment.