Skip to content

Commit

Permalink
replace properties in build file with System.getenv
Browse files Browse the repository at this point in the history
  • Loading branch information
dukke committed Apr 11, 2018
1 parent cbff6be commit 33a9465
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 @@ -29,8 +29,8 @@ task sourceJar(type: Jar) {
}

bintray {
user = property('BINTRAY_USER')
key = property('BINTRAY_KEY')
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
pkg {
repo = 'maven'
name = 'FXRibbon'
Expand Down

0 comments on commit 33a9465

Please sign in to comment.