AW: AW: fileset exclude with full path

2007-09-17 Thread Jan.Materne
) { throw new BuildException("'propertyname' must be set.", getLocation()); } } } Von: Eric Dalquist [mailto:[EMAIL PROTECTED] Gesendet: Montag, 17. September 2007 17:45 An: Ant Users

Re: AW: fileset exclude with full path

2007-09-17 Thread Eric Dalquist
ontag, 17. September 2007 17:10 An: user@ant.apache.org Betreff: fileset exclude with full path I have a full path to a directory that I want to create a fileset of and a full path to a sub-directory that I want to exclude. I've tried the following and some variations on it: No matter

AW: fileset exclude with full path

2007-09-17 Thread Jan.Materne
rel : ${rel} Jan >-Ursprüngliche Nachricht- >Von: Eric Dalquist [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 17. September 2007 17:10 >An: user@ant.apache.org >Betreff: fileset exclude with full path > >I have a full path to a directory that I want to cre

RE: fileset exclude with full path

2007-09-17 Thread George Czernuszka
> From: Eric Dalquist [mailto:[EMAIL PROTECTED] > Sent: 17 September 2007 16:10 > > I have a full path to a directory that I want to create a > fileset of and a full path to a sub-directory that I want to exclude. > > I've tried the following and some variations on it: > > > No matter what

Re: fileset exclude with full path

2007-09-17 Thread Eric Dalquist
I figured that was the requirement ... unfortunately I have no control over the format of either path. All I get is two properties, each is an absolute path, and I need to make a fileset using one as the dir and excluding the other. My other thought was to look into trimming off the first bit

Re: fileset exclude with full path

2007-09-17 Thread Dominique Devienne
On 9/17/07, Eric Dalquist <[EMAIL PROTECTED]> wrote: > dir="/a/b/c/" Not recommended indeed, but if you really can't change that > excludes="/a/b/c/d/**" /> This is wrong. Needs to be relative to dir attribute above. So should be d/** only. --DD ---

fileset exclude with full path

2007-09-17 Thread Eric Dalquist
I have a full path to a directory that I want to create a fileset of and a full path to a sub-directory that I want to exclude. I've tried the following and some variations on it: No matter what I try I can't seem to get the excludes path to be honored. I unfortunately do not have the ability