mirror of
https://github.com/TwidereProject/Twidere-Android
synced 2024-12-11 16:16:34 +01:00
10 lines
184 B
Bash
Executable File
10 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o allexport
|
|
source $1
|
|
#https://docs.travis-ci.com/user/deployment/script/#Ruby-version
|
|
rvm default exec fastlane supply run
|
|
retcode=$?
|
|
set +o allexport
|
|
|
|
exit $retcode |