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:
parent
75fbfb9613
commit
a47b570d16
3 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue