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