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> </RunParams>
<RequiredPackages Count="2"> <RequiredPackages Count="2">
<Item1> <Item1>
<PackageName Value="svnpkg"/> <PackageName Value="FCL"/>
</Item1> </Item1>
<Item2> <Item2>
<PackageName Value="FCL"/> <PackageName Value="svnpkg"/>
</Item2> </Item2>
</RequiredPackages> </RequiredPackages>
<Units Count="1"> <Units Count="1">

View File

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