mas/script/build

22 lines
442 B
Text
Raw Normal View History

#!/bin/bash -e
2015-09-19 22:43:03 +00:00
main() {
2015-09-20 10:23:36 +00:00
script/clean
build
2015-12-30 21:45:36 +00:00
# If this is a tagged build we are going to release
if [[ ! -z $TRAVIS_TAG ]]; then
archive
fi
}
build() {
set -o pipefail && xcodebuild -project "mas-cli.xcodeproj" -scheme mas-cli -configuration Release clean build | xcpretty -c
}
archive() {
set -o pipefail && xcodebuild -project "mas-cli.xcodeproj" -scheme mas-cli -archivePath mas.xcarchive archive | xcpretty -c
}
main