Skip to content

Commit a5658d2

Browse files
committed
disable xcpretty
1 parent 8b95085 commit a5658d2

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

TemplateProject/scripts/makedist-mac.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,15 +154,11 @@ fi
154154
#---------------------------------------------------------------------------------------------------------
155155
# build xcode project. Change target to build individual formats, or add to All target in the xcode project
156156

157-
xcodebuild -project ./projects/$PLUGIN_NAME-macOS.xcodeproj -xcconfig ./config/$PLUGIN_NAME-mac.xcconfig DEMO_VERSION=$DEMO -target "All" -configuration Release | tee build-mac.log | xcpretty #&& exit ${PIPESTATUS[0]}
157+
xcodebuild -project ./projects/$PLUGIN_NAME-macOS.xcodeproj -xcconfig ./config/$PLUGIN_NAME-mac.xcconfig DEMO_VERSION=$DEMO -target "All" -configuration Release
158158

159-
if [ "${PIPESTATUS[0]}" -ne "0" ]; then
159+
if [ "$?" -ne "0" ]; then
160160
echo "ERROR: build failed, aborting"
161-
echo ""
162-
cat build-mac.log
163161
exit 1
164-
else
165-
rm build-mac.log
166162
fi
167163

168164
#---------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)