如何在构建阶段脚本中出现致命错误
How make fatal error in build phases script
我尝试在 lint 脚本中出现致命错误。目前我能够创建一个允许我编译代码的普通错误。
有什么方法可以在这个脚本中产生致命错误吗?
if which swiftlint >/dev/null; then
swiftlint
else
echo "error: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi
如果构建脚本以非零退出状态终止,Xcode 构建过程将失败并出现错误:
if which swiftlint >/dev/null; then
swiftlint
else
echo "error: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
exit 1
fi
或者只使用
swiftlint
作为构建脚本。如果找不到 swiftlint 程序,那么构建过程也会失败,并显示类似
的错误消息
swiftlint: command not found
Command /bin/sh failed with exit code 127
我尝试在 lint 脚本中出现致命错误。目前我能够创建一个允许我编译代码的普通错误。 有什么方法可以在这个脚本中产生致命错误吗?
if which swiftlint >/dev/null; then
swiftlint
else
echo "error: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi
如果构建脚本以非零退出状态终止,Xcode 构建过程将失败并出现错误:
if which swiftlint >/dev/null; then
swiftlint
else
echo "error: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
exit 1
fi
或者只使用
swiftlint
作为构建脚本。如果找不到 swiftlint 程序,那么构建过程也会失败,并显示类似
的错误消息swiftlint: command not found Command /bin/sh failed with exit code 127