From 3c1551e69f93afef0b88c9c70ae4139cbb3ca9db Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Tue, 4 Aug 2009 16:30:25 +0200 Subject: [PATCH] Git installer: Remove quotes as done by ISTool ISTool, a more sophisticated Inno Setup script editor than the default one, strips superfluous quotes when saving. In order to not mix this stripping with other "real" changes, the stripped version of the script is now committed. Signed-off-by: Johannes Schindelin --- share/WinGit/install.iss | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/share/WinGit/install.iss b/share/WinGit/install.iss index c1bae4fc..0fdbfa1c 100644 --- a/share/WinGit/install.iss +++ b/share/WinGit/install.iss @@ -29,21 +29,21 @@ SetupIconFile=etc\git.ico WizardSmallImageFile=git.bmp [Tasks] -Name: quicklaunchicon; Description: "Create a &Quick Launch icon"; GroupDescription: "Additional icons:"; Flags: checkedonce -Name: desktopicon; Description: "Create a &Desktop icon"; GroupDescription: "Additional icons:"; Flags: checkedonce -Name: shellextension; Description: "Add ""Git Ba&sh Here"""; GroupDescription: "Windows Explorer integration:"; Flags: checkedonce -Name: guiextension; Description: "Add ""Git &GUI Here"""; GroupDescription: "Windows Explorer integration:"; Flags: checkedonce +Name: quicklaunchicon; Description: Create a &Quick Launch icon; GroupDescription: Additional icons:; Flags: checkedonce +Name: desktopicon; Description: Create a &Desktop icon; GroupDescription: Additional icons:; Flags: checkedonce +Name: shellextension; Description: "Add ""Git Ba&sh Here"""; GroupDescription: Windows Explorer integration:; Flags: checkedonce +Name: guiextension; Description: "Add ""Git &GUI Here"""; GroupDescription: Windows Explorer integration:; Flags: checkedonce [Files] -Source: "*"; DestDir: "{app}"; Excludes: "\*.bmp, gpl-2.0.rtf, \install.*, \tmp.*, \bin\*install*"; Flags: recursesubdirs replacesameversion -Source: ReleaseNotes.rtf; DestDir: "{app}"; Flags: isreadme replacesameversion +Source: *; DestDir: {app}; Excludes: \*.bmp, gpl-2.0.rtf, \install.*, \tmp.*, \bin\*install*; Flags: recursesubdirs replacesameversion +Source: ReleaseNotes.rtf; DestDir: {app}; Flags: isreadme replacesameversion [Icons] -Name: "{group}\Git GUI"; Filename: "{app}\bin\wish.exe"; Parameters: """{app}\libexec\git-core\git-gui"""; WorkingDir: "%HOMEDRIVE%%HOMEPATH%"; IconFilename: "{app}\etc\git.ico" -Name: "{group}\Git Bash"; Filename: "{syswow64}\cmd.exe"; Parameters: "/c """"{app}\bin\sh.exe"" --login -i"""; WorkingDir: "%HOMEDRIVE%%HOMEPATH%"; IconFilename: "{app}\etc\git.ico" -Name: "{group}\Uninstall Git"; Filename: "{uninstallexe}" -Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\Git Bash"; Filename: "{syswow64}\cmd.exe"; Parameters: "/c """"{app}\bin\sh.exe"" --login -i"""; WorkingDir: "%HOMEDRIVE%%HOMEPATH%"; IconFilename: "{app}\etc\git.ico"; Tasks: quicklaunchicon -Name: "{code:GetShellFolder|desktop}\Git Bash"; Filename: "{syswow64}\cmd.exe"; Parameters: "/c """"{app}\bin\sh.exe"" --login -i"""; WorkingDir: "%HOMEDRIVE%%HOMEPATH%"; IconFilename: "{app}\etc\git.ico"; Tasks: desktopicon +Name: {group}\Git GUI; Filename: {app}\bin\wish.exe; Parameters: """{app}\libexec\git-core\git-gui"""; WorkingDir: %HOMEDRIVE%%HOMEPATH%; IconFilename: {app}\etc\git.ico +Name: {group}\Git Bash; Filename: {syswow64}\cmd.exe; Parameters: "/c """"{app}\bin\sh.exe"" --login -i"""; WorkingDir: %HOMEDRIVE%%HOMEPATH%; IconFilename: {app}\etc\git.ico +Name: {group}\Uninstall Git; Filename: {uninstallexe} +Name: {userappdata}\Microsoft\Internet Explorer\Quick Launch\Git Bash; Filename: {syswow64}\cmd.exe; Parameters: "/c """"{app}\bin\sh.exe"" --login -i"""; WorkingDir: %HOMEDRIVE%%HOMEPATH%; IconFilename: {app}\etc\git.ico; Tasks: quicklaunchicon +Name: {code:GetShellFolder|desktop}\Git Bash; Filename: {syswow64}\cmd.exe; Parameters: "/c """"{app}\bin\sh.exe"" --login -i"""; WorkingDir: %HOMEDRIVE%%HOMEPATH%; IconFilename: {app}\etc\git.ico; Tasks: desktopicon [Messages] BeveledLabel={#emit APP_URL} @@ -51,10 +51,10 @@ SetupAppTitle={#emit APP_NAME} Setup SetupWindowTitle={#emit APP_NAME} Setup [UninstallDelete] -Type: files; Name: "{app}\bin\git-*.exe" -Type: files; Name: "{app}\libexec\git-core\git-*.exe" -Type: dirifempty; Name: "{app}\home\{username}" -Type: dirifempty; Name: "{app}\home" +Type: files; Name: {app}\bin\git-*.exe +Type: files; Name: {app}\libexec\git-core\git-*.exe +Type: dirifempty; Name: {app}\home\{username} +Type: dirifempty; Name: {app}\home [Code] { -- 2.11.4.GIT