From de7ba23a2593d454afd80af75009504a03c37bd7 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 2 Aug 2020 22:27:01 +0200 Subject: [PATCH] Fixed some problems with the install.py script --- install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.py b/install.py index 2d05835d..4bd4c0e7 100755 --- a/install.py +++ b/install.py @@ -62,10 +62,10 @@ else: instOpt = [ "--name=novelWriter", + "--clean", "--onefile", - "--add-data=%s%s%s" % (os.path.join("nw", "assets", "themes"), dotDot,"themes"), - "--add-data=%s%s%s" % (os.path.join("nw", "assets", "graphics"), dotDot,"graphics"), - "--icon=%s" % os.path.join("nw", "assets", "icons", "novelWriter.ico"), + "--add-data=%s%s%s" % (os.path.join("nw", "assets"), dotDot, "assets"), + "--icon=%s" % os.path.join("nw", "assets", "icons", "novelwriter.ico"), ] if buildWindowed: instOpt.append("--windowed")