我遇到以下情况:
<target name="test_something">
<if>
<equals arg1="1" arg2="1" />
<then>
<input propertyname="confirm_cleanup" defaultValue="y" validArgs="y,n" promptChar="?">Hello</input>
</then>
</if>
</target>
当我运行任务时,输出是:HelloHelloHelloHello(y,n) [y]?
任何想法为什么它会被回显 4 次?
干杯