Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在构建阶段有一个脚本,我在抛出构建错误后尝试“返回退出 1”。
这来自一个命令行工具,该工具在出现问题后记录“return exit 1”。退出 1 出现在日志上,但 Xcode 仍然告诉我我需要返回一个非零退出代码......
有任何想法吗?编辑
这是脚本的类型:
您的脚本可能是一个(bash)shell 脚本。在这种情况下,您不应该使用return exit 1;您应该只使用exit 1.
return exit 1;
exit 1