fixing fastlane command

This commit is contained in:
Mariotaku Lee 2017-09-09 17:14:57 +08:00
parent 61f0796345
commit 11429954c9
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
2 changed files with 4 additions and 4 deletions

View File

@ -32,6 +32,7 @@ addons:
- patch
- openssh-client
- git
- ruby
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
@ -48,7 +49,7 @@ before_install:
- ./travis/scripts/decode_private_configs.sh
install:
- gem install fastlane
- rvm default exec gem install fastlane
- ./travis/scripts/fetch_private_files.sh
- cat ./travis/configs/gradle.properties > ./gradle.properties

View File

@ -1,10 +1,9 @@
#!/bin/bash
fastlane --version
set -o allexport
source $1
fastlane supply run
#https://docs.travis-ci.com/user/deployment/script/#Ruby-version
rvm default exec fastlane supply run
retcode=$?
set +o allexport