1
0
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:
Alex Plate 2025-03-07 18:02:29 +02:00
parent 09321f409c
commit 098243fb12
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -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
}
}
}
}