Is there a way to find what architecture an ant script is running on? Currently I have the following:
<echo>System = ${os.name} ${os.arch}</echo>
which produces:
[echo] System = Linux i386
This not correct, as I am running 64 bit linux.
Thank you