gpt4 book ai didi

eclipse - eclipse 不返回错误级别

转载 作者:行者123 更新时间:2023-12-02 03:57:33 24 4
gpt4 key购买 nike

我正在编写一个批处理文件,以从本地存储库在Eclipse上安装功能。

eclipse.exe -application org.eclipse.equinox.p2.director
-repository C:/repo,http://download.eclipse.org/releases/indigo/
-installIU com.app.feature.feature.group

但我无法从批处理脚本中检测操作是否失败或成功。看来eclipse没有设置错误级别?任何可能的解决方法?

最佳答案

我发现的一种解决方法是通过ant exec运行命令,而不是直接从批处理文件调用。它报告所有错误。

<exec executable="eclipse.exe" failonerror="true">
<arg value="-noSplash"/>
<arg value="-application"/>
<arg value="org.eclipse.equinox.p2.director"/>
<arg value="-repository"/>
<arg value="file:C:/repo,http://download.eclipse.org/releases/indigo/"/>
<arg value="-installIU"/>
<arg value="com.app.feature.feature.group"/>
</exec>

关于eclipse - eclipse 不返回错误级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11927259/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com