In ant, I need to create a file named "current_build" with the only content (in plaintext) being the full name of the directory:
So I have this:
<echo file="${trainer.dir}/current_build">${trainer.dir}</echo>
And in my build.properties, I have a relative path set:
trainer.dir=../trainer
In the current_build file, I would like it to be the whole path... like: c:\workspace\project\trainer
How can I do this? Right now, it just prints ../trainer to the file