From 6257dbf566a7be78701c0ae2cfe9340d85e7da55 Mon Sep 17 00:00:00 2001 From: Matthew Stratford Date: Mon, 26 Apr 2021 13:37:44 +0100 Subject: [PATCH] Last attempt at windows build during lunch. --- build/generate-build-exe-config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/generate-build-exe-config.py b/build/generate-build-exe-config.py index 9235341..fa729b9 100644 --- a/build/generate-build-exe-config.py +++ b/build/generate-build-exe-config.py @@ -21,7 +21,7 @@ for option in config["pyinstallerOptions"]: if not isWindows(): option["value"] = option["value"].replace(";", ":") elif relative_fix: - option["value"] += "." # Add the windows relative path. + option["value"] += "./" # Add the windows relative path. out_file = open('build-exe-config.json', 'w') out_file.write(json.dumps(config, indent=2))