Skip to content

Commit

Permalink
fix bintray upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Yarikx committed Oct 7, 2016
1 parent d38e6b3 commit 892ae23
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 @@ -11,8 +11,8 @@ buildscript {
}

project.ext {
bintrayUser = hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : ""
bintrayKey = hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : ""
bintrayUser = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : ""
bintrayKey = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : ""
reductorVersion = '0.9.0'
}

Expand Down

0 comments on commit 892ae23

Please sign in to comment.