我的ant exec任务如何才能等到称为bat文件的结尾

时间:2019-04-15 08:06:39

标签: java cmd ant exec

我有一个任务,其中exec任务在调用this之后执行一个install.bat文件ant出口的任务。我想让蚂蚁等待下一个任务,直到被称为bat文件的执行结束。在下面的代码中,ant调用install.bat,然后调用start.bat 我想等待调用start.bat,直到install.bat完成。

谢谢

<target name="execute" >
   <echo message="executing install.bat file"></echo>
   <exec dir="${adss.file.dest}\setup" executable="cmd">
      <arg value="/c"/>
      <arg value="call"/>
      <arg value="install.bat"/>
   </exec>
   <exec dir="${adss.file.dest}\tomcat\bin" executable="cmd">
      <arg value="/c"/>
      <arg value="call"/>
      <arg value="start.bat"/>
   </exec>
</target>

0 个答案:

没有答案