我有一个运行ANT命令的.bat文件,如
ant“clean”“debug”“compress”“buildnumber”-f C:\ Users \ cm \ WebstormProjects \ GAME \ build \ build.xml
在这个蚂蚁命令之后我有了这个
启动run_vbs.bat
并且不执行此命令。
我做错了什么?
答案 0 :(得分:3)
使用此命令启动ant批处理文件:
call ant_batch.bat
您可能没有使用call
关键字,因此批处理文件不会返回控件,它只是结束。
答案 1 :(得分:1)
我不得不像我这样
从我的ant_batch.bat中调用ant调用ant“clean”“debug”“compress”“buildnumber”-f C:\ Users \ cm \ WebstormProjects \ GAME \ build \ build.xml
因此,在调用ant时必须使用关键字“call”,因为不会执行ant-call之后的其他命令。