From 9dd9267e49b41ec54adf09652773361380c9bde2 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Thu, 28 Feb 2013 21:45:24 +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 e68af06..b9fea32 100644 --- a/setup.py +++ b/setup.py @@ -178,7 +178,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 + \ @@ -196,7 +196,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