Re: [NAnt-users] Subversion Copy command throws an error

2009-01-15 Thread Nayan Gowda
Hi, I modifed the prefix in the version task from "Release-" to "Release." and Nant property "prefix.version" as "Release..version" This solved my issue. So the Script looks like this. Thanks for all the inputs.. Cheers Nayan K On Thu, Jan 15, 2009 at 7:07 PM, Phil Sayers wrote: >

Re: [NAnt-users] Subversion Copy command throws an error

2009-01-15 Thread Bevan Arps
One thought ... ... given that ${ } doesn't mean "insert macro value" but instead "evaluate this expression" ... ... is ${Release-.version} actually a subtraction involving the two properties "Release" and ".version" ? Cheers, Bevan. From: Bob Archer [mailto:bob.arc...@amsi.com] S

Re: [NAnt-users] Subversion Copy command throws an error

2009-01-15 Thread Bob Archer
Put an: http://10.99.82.12/branches/$%7BRelease-.version%7D> " /> Right before your exec command. My guess is that this doesn't exist or is blank or null. BOb From: Nayan Gowda [mailto:nayan.go...@gmail.com] Sent: Thursday, January 15, 2009 7:09

Re: [NAnt-users] Subversion Copy command throws an error

2009-01-15 Thread Phil Sayers
An as always I manage to reply directly instead of to the list.bah From: Phil Sayers [mailto:p...@cds-am.net] Sent: Thursday, January 15, 2009 8:37 AM To: 'Nayan Gowda' Subject: RE: [NAnt-users] Subversion Copy command throws an error A quick initial thought.. Do you have a property ca

[NAnt-users] Subversion Copy command throws an error

2009-01-15 Thread Nayan Gowda
Hi, I have written the below Nant script in order to update the version of the build in the build.number and commit the file back to Subversion and Create a tag of the trunk with the latest build version. I am able to increment the version of the build number and commit the file