1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-01 16:34:03 +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,6 +126,7 @@ publishing {
}
repositories {
maven {
if (uploadUrl.isNotEmpty()) {
url = uri(uploadUrl)
credentials {
username = spaceUsername
@ -134,3 +135,4 @@ publishing {
}
}
}
}