Skip to content

Commit

Permalink
Will revert – disable xcpretty (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed Oct 11, 2023
1 parent ed66442 commit 63d6b45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function RunXcodebuild() {
xcpretty_cmd=(xcpretty)

result=0
xcodebuild "$@" | tee xcodebuild.log | "${xcpretty_cmd[@]}" || result=$?
xcodebuild "$@" | tee xcodebuild.log || result=$?

if [[ $result == 65 ]]; then
ExportLogs "$@"
Expand All @@ -121,7 +121,7 @@ function RunXcodebuild() {
sleep 5

result=0
xcodebuild "$@" | tee xcodebuild.log | "${xcpretty_cmd[@]}" || result=$?
xcodebuild "$@" | tee xcodebuild.log || result=$?
fi

if [[ $result != 0 ]]; then
Expand Down

0 comments on commit 63d6b45

Please sign in to comment.