私は次のことに遭遇しています:
<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回エコーされる理由はありますか?
乾杯