1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-01 07: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,10 +126,12 @@ publishing {
} }
repositories { repositories {
maven { maven {
url = uri(uploadUrl) if (uploadUrl.isNotEmpty()) {
credentials { url = uri(uploadUrl)
username = spaceUsername credentials {
password = spacePassword username = spaceUsername
password = spacePassword
}
} }
} }
} }