fpsvnsync: fixed typo svn copy command

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@299 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
vsnijders 2007-12-23 09:30:10 +00:00
parent 96bf4fd526
commit b4b0070df7
2 changed files with 3 additions and 3 deletions

View File

@ -26,10 +26,10 @@
</RunParams>
<RequiredPackages Count="2">
<Item1>
<PackageName Value="svnpkg"/>
<PackageName Value="FCL"/>
</Item1>
<Item2>
<PackageName Value="FCL"/>
<PackageName Value="svnpkg"/>
</Item2>
</RequiredPackages>
<Units Count="1">

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 -r%d "%s%s""%s"',
Command := format('copy -r%d "%s%s" "%s"',
[LogPath.CopyFromRevision,
DestRoot, LogPath.CopyFromPath, DestFile]);
writeln('svn '+ Command);