I am running the nant task to pack all the source files into zip and into the same task, I want to run the svn diff command in one specific folder to notify about changes made in this source. The command I want to execute in its simplest form is from the command line:
svn diff $Special_Folder$ > Changes_In_$Special_Folder$.patch
I have the following xml in nant target
<svn command="diff"
destination="..\build\Database\Scripts"
uri ="http://SVN-server/PATH/To/Src">
</svn>
However, I get an svn error message that says
. What am I doing wrong?
source
share