On 2/16/2014 11:23 PM, Alex Harui wrote:
Ant will not pick up environment variables without doing something like:
<property environment="env"/>
<property name="FLEX_HOME" value="${env.FLEX_HOME}" />
You can test it by doing:
<echo>FLEX_HOME is ${FLEX_HOME}</echo>
I'm not depending on the environment. I have FLEX_HOME set in my
build.properties file. That is supposed to be loaded by
<property file="build.properties" />
If that is wrong, please tell me what to put there instead. Or should I
just put all the property definitions in the build.xml file?