From: Myagi Date: Thu, 16 Jul 2009 17:48:41 +0000 (+0200) Subject: restored the accidently removed quotes on igit command line X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8cc536d6e50c6d3b7089128916843b015eef4c84;p=tortoisegit%2FTortoiseGitJp.git restored the accidently removed quotes on igit command line --- diff --git a/src/Git/Git.cpp b/src/Git/Git.cpp index a1cae65..4e5e951 100644 --- a/src/Git/Git.cpp +++ b/src/Git/Git.cpp @@ -1080,7 +1080,7 @@ BOOL CGit::EnumFiles(const TCHAR *pszProjectPath, const TCHAR *pszSubPath, unsig } else { - cmd.Format(_T("igit.exe %s status %s"), sProjectPath, sMode); + cmd.Format(_T("igit.exe \"%s\" status %s"), sProjectPath, sMode); } //OutputDebugStringA("---");OutputDebugStringW(cmd);OutputDebugStringA("\r\n");