RE: SVN skipping revert after add for file path with spaces in it

2014-09-15 Thread Simone Agha
users@subversion.apache.org Cc: Simone Agha Subject: Re: SVN skipping revert after add for file path with spaces in it On 2014-09-05 22:37, Simone Agha wrote: > Hi, > > I'm having trouble un-adding a directory (recursively) that has spaces in its > name. I am doing this on Windo

Re: SVN skipping revert after add for file path with spaces in it

2014-09-05 Thread Bert Huijben
I would start by removing the final ‘\' from the paths you create yourself, as they are never necessary and affect the quoting rules (in some cases ignoring the final “). In general you should never double the quoting characters. Then you get to the boundary between parsing in 'svn’ and 'cmd',

Re: SVN skipping revert after add for file path with spaces in it

2014-09-05 Thread olli hauer
On 2014-09-05 22:37, Simone Agha wrote: > Hi, > > I'm having trouble un-adding a directory (recursively) that has spaces in its > name. I am doing this on Windows 8.1 through a batch script. An example of > my code is below: > > set PATHWSPACES=%CD% > svn add "PATHWSPACES"\subdir1\ > svn rever

SVN skipping revert after add for file path with spaces in it

2014-09-05 Thread Simone Agha
Hi, I'm having trouble un-adding a directory (recursively) that has spaces in its name. I am doing this on Windows 8.1 through a batch script. An example of my code is below: set PATHWSPACES=%CD% svn add "PATHWSPACES"\subdir1\ svn revert "PATHWSPACES"\subdir1\subdir2\ --recursive When I run t