Svn2RevisionInc: Do not warn about missing SVN client. Issue #40359, patch by Don Siders.

This commit is contained in:
Juha 2023-07-03 09:59:57 +03:00
parent c3891ad820
commit 4db3bb880c

View File

@ -572,8 +572,8 @@ begin
exit;
end;
if not SvnInPath then
debugln('Warning: svn not in path.');
if not (GitInPath or SvnInPath or HgInPath) then
debugln('Warning: Version control client not in path.');
Result := True;
end;