From cdb77ad0f9e976797d244ccfe2cb06ced8caea8b Mon Sep 17 00:00:00 2001 From: vsnijders Date: Sat, 22 Dec 2007 15:21:27 +0000 Subject: [PATCH] fpsvnsync: fixed typo svn add command git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@296 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 2bf9b2be1..8d21fb803 100644 --- a/applications/fpsvnsync/fpsvnsync.lpr +++ b/applications/fpsvnsync/fpsvnsync.lpr @@ -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;