From 865fdddb0499ead9c4e02003aab675a4fba669b8 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Wed, 10 Mar 2010 11:39:36 +0100 Subject: [PATCH] Installer: A minor formatting / comment improvement Signed-off-by: Sebastian Schuberth --- share/WinGit/install.iss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/share/WinGit/install.iss b/share/WinGit/install.iss index af45b55a..77b53c3a 100644 --- a/share/WinGit/install.iss +++ b/share/WinGit/install.iss @@ -754,10 +754,12 @@ begin Cmd:='core.autocrlf false'; end; if not Exec(AppDir + '\bin\git.exe', 'config -f gitconfig ' + Cmd, - AppDir + '\etc', SW_HIDE, ewWaitUntilTerminated, i) then begin + AppDir + '\etc', SW_HIDE, ewWaitUntilTerminated, i) then begin Msg:='Unable to configure the line ending conversion: ' + Cmd; MsgBox(Msg,mbError,MB_OK); Log(Msg); + // This is not a critical error, the user can probably fix it manually, + // so we continue. end; { -- 2.11.4.GIT