Skip to content

Commit

Permalink
Merge pull request Tapadoo#5 from roughike/master
Browse files Browse the repository at this point in the history
Fixed empty Bintray credentials preventing opening the project.
  • Loading branch information
kpmmmurphy authored Feb 16, 2017
2 parents c1ff61d + b0f36f8 commit 79fa449
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions alerter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ android {

//BinTray configuration - credentials stored in user's gradle.properties
bintray {
user = BINTRAY_USER
key = BINTRAY_KEY
user = hasProperty('BINTRAY_USER')? getProperty('BINTRAY_USER') : null
key = hasProperty('BINTRAY_KEY')? getProperty('BINTRAY_KEY') : null

publications = ['Alerter']

Expand Down Expand Up @@ -158,4 +158,4 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
artifacts {
archives javadocJar
archives sourcesJar
}
}

0 comments on commit 79fa449

Please sign in to comment.