line 255 Util.cpp (version 16847)
(NOTE: no was directive to PLATFORM_WIN32!)
bool HasGit()
{
String dummy;
static bool b = HostSys("git", dummy) >= 0;
return b;
}
line 262 Util.cpp (in old version 16660 this works!)
(NOTE: in line 255 was the directive #ifdef PLATFORM_WIN32)
bool HasGit()
{
String dummy;
static bool b = FileExists(GetInternalGitPath()) || Sys("git", dummy) >= 0;
return b;
}