mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-04-22 10:15:47 +02:00
Fix vim-engine setup if no uploadUrl provided
This commit is contained in:
parent
09321f409c
commit
098243fb12
@ -126,10 +126,12 @@ publishing {
|
||||
}
|
||||
repositories {
|
||||
maven {
|
||||
url = uri(uploadUrl)
|
||||
credentials {
|
||||
username = spaceUsername
|
||||
password = spacePassword
|
||||
if (uploadUrl.isNotEmpty()) {
|
||||
url = uri(uploadUrl)
|
||||
credentials {
|
||||
username = spaceUsername
|
||||
password = spacePassword
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user