passforios/fastlane/travis.sh

11 lines
156 B
Bash
Raw Normal View History

2017-03-24 23:16:58 -07:00
#!/bin/sh
gem update fastlane
2018-01-15 19:46:38 -08:00
gem install xcodeproj
2017-03-28 10:40:31 -07:00
if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then
fastlane test;
else
fastlane travis;
fi
2017-03-24 23:16:58 -07:00
exit $?