目标失败时的Apache Ant调用

时间:2017-06-20 09:24:09

标签: ant

我正在尝试在另一个目标失败时调用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。

0 个答案:

没有答案