We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
xcodebuild
xcbeautify
1 parent a70e962 commit fdf1e8cCopy full SHA for fdf1e8c
2 files changed
Brewfile
@@ -4,5 +4,6 @@ brew 'ktlint'
4
brew 'n'
5
brew 'swiftformat'
6
brew 'swiftlint'
7
+brew 'xcbeautify'
8
brew 'yarn'
9
cask 'temurin11'
scripts/xcodebuild.sh
@@ -57,8 +57,11 @@ if [[ "$CCACHE_DISABLE" != "1" ]]; then
57
58
ccache --zero-stats 1> /dev/null
59
fi
60
+if ! command -v xcbeautify 1> /dev/null; then
61
+ brew install xcbeautify
62
+fi
63
-eval "$build_cmd"
64
+eval "$build_cmd" | xcbeautify
65
66
if [[ "$CCACHE_DISABLE" != "1" ]]; then
67
ccache --show-stats --verbose
0 commit comments