From b755d5f124544fedfd797d75cabbad4c4a636a0b Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 8 Jun 2009 14:44:08 +0200 Subject: [PATCH] Git Installer: replace identical file versions Our msys-1.0.dll (and other files) do not contain version numbers that reflects that they were updated, so the installer needs to overwrite files that purport to have the same file version. Reported by Bosko Ivanisevic and Ferry Huberts. Fix suggested by Brian Downing. Signed-off-by: Johannes Schindelin --- share/WinGit/install.iss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/WinGit/install.iss b/share/WinGit/install.iss index 21e8336206..18d43c6606 100644 --- a/share/WinGit/install.iss +++ b/share/WinGit/install.iss @@ -35,8 +35,8 @@ Name: shellextension; Description: "Add ""Git Ba&sh Here"""; GroupDescription: " 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 -Source: ReleaseNotes.rtf; DestDir: "{app}"; Flags: isreadme +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: "%USERPROFILE%"; IconFilename: "{app}\etc\git.ico" -- 2.11.4.GIT