fpsvnsync: fixed typo svn add command

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@296 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
vsnijders
2007-12-22 15:21:27 +00:00
parent cfabbe90ac
commit cdb77ad0f9

View File

@ -175,7 +175,7 @@ var
else
CopyFile(SourceFile, DestFile, true);
if LogPath.Action=caAdd then begin
Command := format('svn add "%s"', [DestFile]);
Command := format('add "%s"', [DestFile]);
writeln(Command);
writeln('Result: ',ExecuteSvnCommand(Command));
end;