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.
ビルド エラーをスローした後、'return exit 1' を試みているビルド フェーズのスクリプトがあります。
これは、問題が発生した後に「return exit 1」をログに記録しているコマンド ライン ツールからのものです。exit 1 がログに表示されますが、Xcode はゼロ以外の終了コードを返す必要があることをまだ伝えています...
何か案は?編集
スクリプトのタイプは次のとおりです。
あなたのスクリプトはおそらく(bash)シェルスクリプトです。その場合、 を使用return exit 1;するべきではなく、 を使用する必要がありますexit 1。
return exit 1;
exit 1