26
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Xcode Previewsのためのビルド時はBuild Phase Scriptを実行しない

Last updated at Posted at 2022-06-11

XcodeのBuild PhasesスクリプトでFormatterやGeneratorを実行していると、そのコード変更によりXcode Previewsが不安定になることがあります。
Xcode Previewsのためのビルド時は環境変数ENABLE_PREVIEWSYESに設定されているので、その時はスクリプトを実行しないようにすることでXcode Previewsの動作が安定します。

Run Script
# Xcode Preview のビルド時はスクリプトを実行しない
if [ \"$ENABLE_PREVIEWS\" == \"YES\" ]; then
  exit 0
fi

# Formatter, Generator の実行
...
26
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
26
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?