Skip to content

Commit

Permalink
chore: set default value in credentials.gradle to null
Browse files Browse the repository at this point in the history
  • Loading branch information
tschulte committed Sep 15, 2015
1 parent 9b8863e commit 07607af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/credentials.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
def setExtValue(String property, String systemenv) {
project.ext."$property" = project.hasProperty(property)?project.getProperty(property):System.getenv(systemenv)?:''
project.ext."$property" = project.hasProperty(property) ? project.getProperty(property) : System.getenv(systemenv)
}

setExtValue('bintrayUsername', 'BINTRAY_USER')
Expand Down

0 comments on commit 07607af

Please sign in to comment.