From ccd5d98e0f4d7226183ee650e112f2682b4cf06c Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Wed, 19 Dec 2007 17:31:17 +0100 Subject: [PATCH] WinGit: Do more verbose logging during built-in creation --- 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 71a4708f..a115664b 100644 --- a/share/WinGit/install.iss +++ b/share/WinGit/install.iss @@ -279,7 +279,7 @@ begin // Map the built-ins to git.exe. if IsNTFS then begin - Log('Line {#emit __LINE__}: Assuming the partition is formatted using NTFS.'); + Log('Line {#emit __LINE__}: Assuming the partition is formatted using NTFS, trying to create hard links.'); for i:=0 to Count do begin FileName:=AppDir+'\'+BuiltIns[i]; @@ -296,6 +296,8 @@ begin // The fallback is to copy the files. if not IsNTFS then begin + Log('Line {#emit __LINE__}: Trying to create built-in aliases as file copies.'); + for i:=0 to Count do begin FileName:=AppDir+'\'+BuiltIns[i]; -- 2.11.4.GIT