我正在尝试在另一个目标失败时调用Apache Ant目标,而我找不到正确的方法来执行此操作...
<target name="BookingProcess">
<exec dir="${basedir}" executable="php" failonerror="false">
<arg line="bin/behat --format progress --config features/Desktop/BookingProcess.feature --rerun"/>
</exec>
</target>
<target name="BookingProcessRerun">
<exec dir="${basedir}" executable="php" failonerror="true">
<arg line="bin/behat --format progress --config features/Desktop/BookingProcess.feature --rerun"/>
</exec>
</target>
我只想在BookingProcess失败时调用BookingProcessRerun。