We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 676f504 commit db9f0c6Copy full SHA for db9f0c6
scripts/build.sh
@@ -22,9 +22,10 @@ NOTARIZATION_ISSUER_ID="${NOTARIZATION_ISSUER_ID:-69a6de8e-e388-47e3-e053-5b8c7c
22
23
# --- Helper Functions ---
24
25
-if hash xcpretty 2>/dev/null; then
26
- HAS_XCPRETTY=true
27
-fi
+# Temporarily disable xcpretty to see actual errors in CI
+# if hash xcpretty 2>/dev/null; then
+# HAS_XCPRETTY=true
28
+# fi
29
30
# Function to print a section header with emoji
31
function print_section() {
@@ -72,7 +73,7 @@ function invoke_xcodebuild() {
72
73
NSUnbufferedIO=YES xcodebuild $arguments | xcpretty -c
74
exit_code=${PIPESTATUS[0]}
75
else
- xcodebuild $arguments
76
+ xcodebuild $arguments 2>&1
77
exit_code=$?
78
fi
79
0 commit comments