[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Problems with add/delete

From: Simon Thorogood <SThorogood_at_latentzero.com>
Date: 2006-01-30 17:59:03 CET

Hi - I want to check out a directory, delete it's contents, add new contents and then commit the changes. I've set up a test NAnt script which appears to be working when I use relative paths - e.g.

<property name="localroot" value=".\Release" />

<exec program="svn">
  <arg line="checkout"/>
  <arg value="${svnroot}"/>
  <arg value="${localroot}"/>
  <arg line="--username ${svnusername}"/>
  <arg line="--password ${svnpassword}"/>
</exec>

<exec program="svn">
  <arg line="delete"/>
  <arg value="${localroot}\*.*"/>
  <arg line="--username ${svnusername}"/>
  <arg line="--password ${svnpassword}"/>
</exec>

but when I uase an absolute path (which is what I need to be able to do) - e.g.

<property name="localroot" value="D:\Work\test\Release" />

I get an error:

svn: Can't check path 'D:\Work\test\Release\*.*': The filename, directory name, or volume label syntax is incorrect.

The same problem appears to occur with the add command, any ideas?

regards

Simon Thorogood

_____________________________________________________________________
This e-mail has been scanned for viruses by MCI's Internet Managed Scanning Services - powered by MessageLabs. For further information visit http://www.mci.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Jan 30 18:01:38 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.