Skip to content

Commit 3e10889

Browse files
committed
Remove -P flag from makensis
It is not available on other platforms than Win32, and throws a warning under Linux. The performance differences are presumably minimal.
1 parent 4915112 commit 3e10889

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
@@ -357,5 +357,5 @@ def NSISBuildInstaller(nsi_script, artifact_dir):
357357
)
358358
return -1
359359
# http://nsis.sourceforge.net/Docs/Chapter3.html#usage
360-
command = [TOOLS_NSIS, "-NOCD", "-INPUTCHARSET", "UTF8", "-P3", "-V3", nsi_script]
360+
command = [TOOLS_NSIS, "-NOCD", "-INPUTCHARSET", "UTF8", "-V3", nsi_script]
361361
print(cmd(command, stdout=sys.stdout, stderr=sys.stderr, encoding="utf8"))

0 commit comments

Comments
 (0)