Skip to content

Commit

Permalink
Fix property handling
Browse files Browse the repository at this point in the history
  • Loading branch information
belyaev-mikhail committed Sep 27, 2020
1 parent 2493ff1 commit b88f11a
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 @@ -71,8 +71,8 @@ publishing {
maven {
url = "https://api.bintray.com/maven/${bintrayOrg}/${bintrayRepo}/${project.name}/;publish=1;override=1"
credentials {
username (project.property('bintrayUsername') ?: System.getenv('BINTRAY_USERNAME'))
password (project.property('bintrayPassword') ?: System.getenv('BINTRAY_PASSWORD'))
username (project.findProperty('bintrayUsername') ?: System.getenv('BINTRAY_USERNAME'))
password (project.findProperty('bintrayPassword') ?: System.getenv('BINTRAY_PASSWORD'))
}
}
}
Expand Down

0 comments on commit b88f11a

Please sign in to comment.