diff --git a/build.sh b/build.sh index cc5f8ee..a28d539 100755 --- a/build.sh +++ b/build.sh @@ -1,16 +1,18 @@ +# INSTALL xcpretty: sudo gem install xcpretty + NAME='MTMR' rm -r Release 2>/dev/null xcodebuild archive \ -scheme "$NAME" \ - -archivePath Release/App.xcarchive + -archivePath Release/App.xcarchive | xcpretty -c xcodebuild \ -exportArchive \ -archivePath Release/App.xcarchive \ -exportOptionsPlist export-options.plist \ - -exportPath Release + -exportPath Release | xcpretty -c cd Release rm -r App.xcarchive diff --git a/test.sh b/test.sh index ade0dd7..c140089 100755 --- a/test.sh +++ b/test.sh @@ -1,3 +1,4 @@ +# INSTALL xcpretty: sudo gem install xcpretty NAME='MTMR' killall $NAME @@ -11,13 +12,13 @@ rm -r Release 2>/dev/null xcodebuild archive \ -scheme "$NAME" \ - -archivePath Release/App.xcarchive + -archivePath Release/App.xcarchive | xcpretty xcodebuild \ -exportArchive \ -archivePath Release/App.xcarchive \ -exportOptionsPlist export-options.plist \ - -exportPath Release + -exportPath Release | xcpretty cd Release rm -r App.xcarchive