lower the verbosity of makensis to emit only warnings and errors

master
Oz Linden 2016-12-05 13:00:50 -05:00
parent b5f4af3263
commit 911cd64e60
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ class WindowsManifest(ViewerManifest):
while (not installer_created) and (nsis_attempts > 0):
try:
nsis_attempts-=1;
self.run_command('"' + NSIS_path + '" ' + self.dst_path_of(tempfile))
self.run_command('"' + NSIS_path + '" /V2 ' + self.dst_path_of(tempfile))
installer_created=True # if no exception was raised, the codesign worked
except ManifestError, err:
if nsis_attempts: