Skip to content

Commit b2cdabd

Browse files
committed
Support running under Linux
This might break Windows support - needs testing.
1 parent ee729d3 commit b2cdabd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

syrup/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,5 +286,5 @@ def NSISBuildInstaller(nsi_script, artifact_dir):
286286
print("ERROR: Unable to find makensis!\nMake sure you have NSIS installed, and that it is in PATH. https://nsis.sourceforge.io/Download")
287287
return -1
288288
# http://nsis.sourceforge.net/Docs/Chapter3.html#usage
289-
command = [TOOLS_NSIS, "/NOCD", "/INPUTCHARSET", "UTF8", "/P3", "/V3", nsi_script]
289+
command = [TOOLS_NSIS, "-NOCD", "-INPUTCHARSET", "UTF8", "-P3", "-V3", nsi_script]
290290
print(cmd(command, stdout=sys.stdout, stderr=sys.stderr, encoding="utf8"))

0 commit comments

Comments
 (0)