Script fix again.

This commit is contained in:
Matthew Stratford 2021-04-26 13:24:28 +01:00
parent c9b337a27a
commit 3e6782c540

View file

@ -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))