diff options
author | Allan Wang <me@allanwang.ca> | 2017-07-03 16:57:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-03 16:57:00 -0400 |
commit | 01250f93826b24bd53b46426999e9cdea17fecd8 (patch) | |
tree | 85285331bed08aa072017b2010c9862515c6f835 /.travis.yml | |
parent | a6f725d8caa56771770351f78e34e6cf22ecf840 (diff) | |
download | frost-01250f93826b24bd53b46426999e9cdea17fecd8.tar.gz frost-01250f93826b24bd53b46426999e9cdea17fecd8.tar.bz2 frost-01250f93826b24bd53b46426999e9cdea17fecd8.zip |
Fix purchase recognition (#12)
* Update travis
* Update bad billing booleans
* Remove empty cancel fun
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 6f2f6392..cda20a80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,8 +19,8 @@ before_install: - chmod +x gradlew after_success: - chmod +x ./generate-apk-release.sh -- "./generate-apk-release.sh" -- if [[ "$TRAVIS_BRANCH" == "master" ]]; then ./gradlew app:publishApkRelease; fi +# Do one or the other +- if [[ "$TRAVIS_BRANCH" == "master" ]]; then ./gradlew app:publishApkRelease; else ./generate-apk-release.sh; fi script: - cd $TRAVIS_BUILD_DIR/ - "./gradlew assembleReleaseTest" |