Skip to content

Commit

Permalink
organicveggie#17 bintray credential override by env vars for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
watsoncj committed Apr 1, 2015
1 parent 2e4b8eb commit a82db14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ subprojects {
}

bintray {
user = bintrayUser
key = bintrayKey
user = System.getenv("BINTRAY_USER") ?: bintrayUser
key = System.getenv("BINTRAY_KEY") ?: bintrayKey
configurations = ['archives']
pkg {
userOrg = 'readytalk'
Expand Down

0 comments on commit a82db14

Please sign in to comment.