我想终止一个 ant 脚本,或跳过一些目标,但没有失败任务。我想这样做:
`
<target name="init">
<condition property="canContinue">
<not>
<equals arg1="${isOffline}" arg2="1" />
</not>
</condition>
</target>
<target name="init-setup" depends="init" if="canContinue">
<echo message="CanContinue: ${canContinue}"/>
</target>
<target name="doIt" depends="init-setup">
</target>
`
我想跳过所有依赖于 init-setup 的目标,而不仅仅是 init-setup。
我怎样才能做到这一点?
谢谢!