I would like to import a build product to Subversion in a NAnt build task. But it fails for me.
The following works fine for me from the command-line:
svn.exe import -m 'Importing build 14' build/project.zip http://svn/builds/14/project.zip --username builder --password secret
In NAnt I have the following task:
<exec program="svn.exe"
commandline="import -m 'Importing build 14' build/project.zip http://svn/builds/14/project.zip --username builder --password secret" />
But executing a NAnt target with this task yields the error message: "Too many arguments to import command
".
Have you any idea why I get this error message in NAnt, and not when run from the command-line?