https://bz.apache.org/bugzilla/show_bug.cgi?id=61315
--- Comment #2 from Stefan Bodewig <[email protected]> --- You don't show how you read the file. Can you put the whole example into a simple self-contained build file? Preferably without using ant-contrib, so we get that out of consideration. <project> <condition property="schema" value="exists"> <isset property="RMOBINTERMEDIUM.UserName"/> </condition> <property name="schema" value="doesn't exist"/> <echo>schema: ${schema}</echo> </project> should work well enough for the test. With 1.10.1 I get $ ant -f /tmp/x.xml -DRMOBINTERMEDIUM.UserName=x Buildfile: /tmp/x.xml [echo] schema: exists BUILD SUCCESSFUL Total time: 0 seconds $ ant -f /tmp/x.xml Buildfile: /tmp/x.xml [echo] schema: doesn't exist BUILD SUCCESSFUL Total time: 0 seconds -- You are receiving this mail because: You are the assignee for the bug.
