13 lines
194 B
Plaintext
13 lines
194 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -o pipefail
|
||
|
|
||
|
xcrun xcodebuild \
|
||
|
-project Gifu.xcodeproj \
|
||
|
-scheme Gifu \
|
||
|
-sdk iphonesimulator \
|
||
|
CONFIGURATION_BUILD_DIR='./build' \
|
||
|
test \
|
||
|
| xcpretty --color
|
||
|
|