Re: [NAnt-users] Copy command not working

2008-04-10 Thread Bob Archer
It will only copy newer files. Have the files changed? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roy Abou Assaly Sent: Thursday, April 10, 2008 4:21 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Copy command not working Hi, I have a

Re: [NAnt-users] Copy command not working

2008-04-10 Thread Chris Snider
I have some scripts that work at nested levels as well. The only difference I see in the way you have implemented and the way I have done it is the use of a "createdirs" task that I have. It creates the appropriate folder structure as deep as required before the copy task runs. If anyone know

[NAnt-users] Copy command not working

2008-04-10 Thread Roy Abou Assaly
Hi, I have an automated build and only 2 directories seem to not want to copy. The result is the following: [echo] Copying D:\Builds\PRISM XP\Build 10.51.\XMetaLFiles to \\isdist01z\prism\vista\Build_10.51.0\XMetalFiles ... [copy] Copying 0 files to '\\isdist01z\prism\vista\Build_1

Re: [NAnt-users] Re ad only Property overwriting

2008-04-10 Thread Roebuck, Alex
Are you declaring the property in your build file using?: Try: Or don't declare it at all and use ${property::exists('bldtype')} to determine if it has been specified on the commandline. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sattapattu Sen

Re: [NAnt-users] Re ad only Property overwriting

2008-04-10 Thread Bob Archer
You might just try changing it to if="${bldtype}" I think that will return true if the prop exists, and false if it doesn't. I think you can also do: If="${bldtype == ''}" -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sattapattu Sent: Thursday, Apri

[NAnt-users] Re ad only Property overwriting

2008-04-10 Thread Sattapattu
Hi All, I am trying to understand the behavior and seeking help. I am trying to run nant after specifying a property value at command prompt. and i am trying to evaluate the property in my .build script file i.e this line throws me an error saying "Read-only property "bldtype" cannot be ove