如何在xcode中中止python构建阶段脚本

时间:2015-02-17 08:43:59

标签: python xcode

我正在使用python在xcode中编写构建阶段脚本。

我希望在脚本遇到错误时中止构建,并在xcode中增加错误计数。

这样做的方法是什么?

#!/usr/bin/env python
aStringThatShouldNotBeEmpty = ""

if not aStringThatShouldNotBeEmpty:
    # abort build process and print error in issue navigator

1 个答案:

答案 0 :(得分:1)

xcode期望非零退出代码为失败。

所以:

#!/usr/bin/env python

import sys

aStringThatShouldNotBeEmpty = ""

if not aStringThatShouldNotBeEmpty:
    # abort build process and print error in issue navigator
    print 'Your own error, write whatever you want'
    sys.exit(1)