10 lines
155 B
Bash
Executable file
10 lines
155 B
Bash
Executable file
#!/bin/sh
|
|
|
|
gem update fastlane
|
|
gem install xcodeproj
|
|
if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then
|
|
fastlane test;
|
|
else
|
|
fastlane travis;
|
|
fi
|
|
exit $?
|