我有一个bat文件和shell脚本,它执行相同的操作。现在我创建了一个ant build.xml文件,该文件将执行shell脚本或bat文件。我应该如何编写build.xml或如何配置它?
答案 0 :(得分:0)
<condition property="windowsos">
<os family="windows" />
</condition>
<condition property="linuxos">
<os family="unix" />
</condition>
<target name="go" depends="go-windows,go-linux"/>
<target name="go-windows" if="windosos">
..
..
</target>
<target name="go-linux" if="windosos">
..
..
</target>
<target name="go">
<exec executable="doSomthing.exe" osfamily="windows"/>
<exec executable="doSomthing" osfamily="unix"/>
</target>