mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-25 07:57:12 -07:00
Merge pull request #443 from ethauvin/master
Fixed repo name to use config param if available
This commit is contained in:
commit
a38b05fc92
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ class BintrayApi @Inject constructor(val http: Http,
|
||||||
|
|
||||||
val results = arrayListOf<Boolean>()
|
val results = arrayListOf<Boolean>()
|
||||||
val owner = org ?: username!!
|
val owner = org ?: username!!
|
||||||
val repo = project.name
|
val repo = config.name ?: project.name
|
||||||
val group = project.group!!.replace('.', '/')
|
val group = project.group!!.replace('.', '/')
|
||||||
val artifact = project.artifactId!!
|
val artifact = project.artifactId!!
|
||||||
val version = project.version!!
|
val version = project.version!!
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue