1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Fix the bogus default value for getProperty().

This commit is contained in:
Cedric Beust 2017-05-10 09:52:24 -07:00
parent 75fbfb9613
commit a47b570d16
3 changed files with 5 additions and 5 deletions

View file

@ -117,7 +117,7 @@ class PublishPlugin @Inject constructor(val files: KFiles, val factory: PomGener
val docUrl = DocUrl.PUBLISH_PLUGIN_URL
val user = localProperties.get(PROPERTY_BINTRAY_USER, docUrl)
val password = localProperties.get(PROPERTY_BINTRAY_PASSWORD, docUrl)
val org = localProperties.getNoThrows(PROPERTY_BINTRAY_ORG, docUrl)
val org = localProperties.getNoThrows(PROPERTY_BINTRAY_ORG)
val jcenter = bintrayFactory.create(user, password, org)
var success = false