From f5c8115055b04e1384a58de718f160b8b1632d71 Mon Sep 17 00:00:00 2001 From: Nick Cooke <36927374+ncooke3@users.noreply.github.com> Date: Tue, 10 Oct 2023 18:26:51 -0400 Subject: [PATCH] =?UTF-8?q?Will=20revert=20=E2=80=93=20disable=20xcpretty?= =?UTF-8?q?=20(2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 61470f453b7b..87962bcb9d36 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -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 "$@" @@ -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