From 6506f6323d1dd03731dceab3ee71ca9ca7caec78 Mon Sep 17 00:00:00 2001 From: vsnijders Date: Tue, 23 Dec 2008 13:56:15 +0000 Subject: [PATCH] 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 --- applications/fpsvnsync/fpsvnsync.lpr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/fpsvnsync/fpsvnsync.lpr b/applications/fpsvnsync/fpsvnsync.lpr index c5b8fa35e..2e1ff2c8a 100644 --- a/applications/fpsvnsync/fpsvnsync.lpr +++ b/applications/fpsvnsync/fpsvnsync.lpr @@ -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);