From 44679d8a7ffbf2fa4d3d82d18f06946d78f37fae Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Thu, 28 Feb 2013 21:46:12 +0100 Subject: [PATCH] Fix inno setup installer. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0918b3253..1c65343ac 100644 --- a/setup.py +++ b/setup.py @@ -275,7 +275,7 @@ class InnoScript: print("SetupIconFile=%s" % self.icon, file=fd) print(file=fd) print("[Tasks]", file=fd) - print("Name: modifypath; Description: Add application directory to %PATH%; Flags: checked", file=fd) + print("Name: modifypath; Description: Add application directory to %PATH%", file=fd) print(file=fd) # List of source files files = self.windows_exe_files + \ @@ -293,7 +293,7 @@ class InnoScript: (self.name, path), file=fd) for path in self.console_exe_files: name = os.path.basename(path).capitalize() - print(r'Name: "{group}\%s help"; Filename: "cmd.exe"; Parameters "/C %s --help";' % (name, path), file=fd) + print(r'Name: "{group}\%s help"; Filename: "cmd.exe"; Parameters: "/K %s --help";' % (name, path), file=fd) print(r'Name: "{group}\Uninstall %s"; Filename: "{uninstallexe}"' % self.name, file=fd) print(file=fd) # Uninstall optional log files