如何从 shell 脚本运行 ant 脚本?
我需要从 shell 脚本运行 ant 脚本,如果 ant 脚本执行成功,我必须得到返回码 0,如果失败则返回码 1。谁能告诉我如何实现这一点?
I need to run an ant script from a shell script and if the ant script is executed successfully I must get the return code 0 or in case of failure 1. Can anyone tell me how can this be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$?
包含最后一个命令的错误代码,在本例中为ant
。-ne 0
表示不等于0,因此如果发生错误,则执行echo
。您可以为 ant 指定标准参数,即您的构建文件:
ant 运行选项摘要
$?
contains the error code of your last command, in this caseant
.-ne 0
means not equal 0, so if any error happened, execute theecho
.You can specify the standard paramters to ant, i.e. your buildfile:
Summary of ant run options