Skip to content

Commit 97b9c41

Browse files
committed
Comment out folds
1 parent e496a14 commit 97b9c41

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

scripts/build.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ function RunXcodebuild() {
113113

114114
result=0
115115
xcodebuild "$@" | tee xcodebuild.log | "${xcpretty_cmd[@]}" || result=$?
116+
116117
if [[ $result == 65 ]]; then
117118
ExportLogs "$@"
118119

@@ -122,12 +123,12 @@ function RunXcodebuild() {
122123
result=0
123124
xcodebuild "$@" | tee xcodebuild.log | "${xcpretty_cmd[@]}" || result=$?
124125
fi
125-
if [[ $result != 0 ]]; then
126126

127+
if [[ $result != 0 ]]; then
127128
echo "xcodebuild exited with $result; raw log follows" 1>&2
128-
OpenFold Raw log
129+
#OpenFold Raw log
129130
cat xcodebuild.log
130-
CloseFold
131+
#CloseFold
131132

132133
ExportLogs "$@"
133134
return $result
@@ -136,12 +137,12 @@ function RunXcodebuild() {
136137

137138
# Exports any logs output captured in the xcresult
138139
function ExportLogs() {
139-
OpenFold XCResult
140+
#OpenFold XCResult
140141

141142
exporter="${scripts_dir}/xcresult_logs.py"
142143
python "$exporter" "$@"
143144

144-
CloseFold
145+
#CloseFold
145146
}
146147

147148
current_group=none

0 commit comments

Comments
 (0)