fpsvnsync: fixed quoting for svn copy with revision

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@642 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
vsnijders
2008-12-23 13:56:15 +00:00
parent 6c77caad00
commit 6506f6323d

View File

@ -163,7 +163,7 @@ var
if LogPath.Action in [caModify, caAdd] then begin
SourceFile := FSourceWC + LogPath.Path;
if LogPath.CopyFromPath<>'' then begin
Command := format('copy "%1:s%2:s"@%0:d "%3:s"',
Command := format('copy "%1:s%2:s@%0:d" "%3:s"',
[LogPath.CopyFromRevision,
DestRoot, LogPath.CopyFromPath, DestFile]);
writeln('svn '+ Command);