Re: [NAnt-users] Copy command not working

2008-04-11 Thread Roy Abou Assaly
I just solved it. It's always something silly. Basically, the builder wasn't finished copying all the files...it was off by about 30 seconds. So of course when I run the nant file it works *after* the build was complete, but unfortunately, when the build was running, the files really weren't ther

Re: [NAnt-users] Copy command not working

2008-04-11 Thread Roy Abou Assaly
Hi, I just ran the fileset count function and got: copyToServer: [echo] Xmetal FileSet contains 147 files. [echo] Services FileSet contains 7 files. It's as though when I run it from my builder (exe) task, which calls the nant file, it does't work. When I run it directly from the com

Re: [NAnt-users] Copy command not working

2008-04-11 Thread Roy Abou Assaly
Thanks guys, I'll be trying those commands as soon as I can. On Fri, Apr 11, 2008 at 3:31 PM, Bill Martin <[EMAIL PROTECTED]> wrote: > > > > > Check out the fileset functions in NantContrib > (http://nantcontrib.sourceforge.net/release/latest/help/functions/index.html) > > > > There's a couple of

Re: [NAnt-users] Copy command not working

2008-04-11 Thread Bill Martin
Check out the fileset functions in NantContrib (http://nantcontrib.sourceforge.net/release/latest/help/functions/index.html ) There's a couple of functions there that will tell you the number of files in a fileset, and also convert it to a delimited string so you can see what files are in there

Re: [NAnt-users] Copy command not working

2008-04-11 Thread Bob Archer
It must be that your fileset is empty. Add a task the loops through your file set and echos each file name to see if this is the case. BOb -Original Message- From: Roy Abou Assaly [mailto:[EMAIL PROTECTED] Sent: Friday, April 11, 2008 11:55 AM To: Bob Archer Cc: nant-users@lists.source

Re: [NAnt-users] Copy command not working

2008-04-11 Thread Roy Abou Assaly
Hi Bob, The destination is empty. So I don't believe this will have any effect. Thanks! 2008/4/10 Bob Archer <[EMAIL PROTECTED]>: > It will only copy newer files. Have the files changed? > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roy Abou