We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee729d3 commit b2cdabdCopy full SHA for b2cdabd
1 file changed
syrup/functions.py
@@ -286,5 +286,5 @@ def NSISBuildInstaller(nsi_script, artifact_dir):
286
print("ERROR: Unable to find makensis!\nMake sure you have NSIS installed, and that it is in PATH. https://nsis.sourceforge.io/Download")
287
return -1
288
# http://nsis.sourceforge.net/Docs/Chapter3.html#usage
289
- command = [TOOLS_NSIS, "/NOCD", "/INPUTCHARSET", "UTF8", "/P3", "/V3", nsi_script]
+ command = [TOOLS_NSIS, "-NOCD", "-INPUTCHARSET", "UTF8", "-P3", "-V3", nsi_script]
290
print(cmd(command, stdout=sys.stdout, stderr=sys.stderr, encoding="utf8"))
0 commit comments