xcodebuild 仅打印错误
Posted
技术标签:
【中文标题】xcodebuild 仅打印错误【英文标题】:xcodebuild print errors only 【发布时间】:2015-03-31 09:49:51 【问题描述】:我在 SO How to filter the xcodebuild command line output? 看到了这个命令
当我们执行 xcodebuild 时只显示错误和警告,否则 xcodebuild 命令会将所有关于它正在做什么的内容打印到控制台。
有没有办法在 ant 任务中使用 grep 和 xcodebuild?
<exec executable="xcodebuild" failonerror="true">
<arg value="| grep error" />
<arg value="clean" />
<arg value="build" />
</exec>
上面的 exec 任务在尝试执行 ant 任务时抛出错误。
【问题讨论】:
【参考方案1】:This 问题可能会有所帮助。我还认为您需要先调用操作,然后再调用 grep。也许这会起作用:
<exec dir="$projectPath/" executable="bash" failonerror="true">
<arg value="-c"/>
<arg value="xcodebuild clean build | grep error"/>
</exec>
【讨论】:
是的,谢谢,这似乎有效.. 但是必须为执行添加目录-quiet 不打印除警告和错误以外的任何输出
xcodebuild clean build -quiet
它有效。
【讨论】:
以上是关于xcodebuild 仅打印错误的主要内容,如果未能解决你的问题,请参考以下文章
如何使 xcodebuild 向 stderr 打印编译错误和警告?
xcode 9 xcodebuild 开启钥匙串共享和推送通知