1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2024-12-11 11:19:08 +02:00

fix empty vrunnerSettings

This commit is contained in:
Dima 2024-03-19 17:15:13 +03:00
parent fef2c1a8f9
commit 512fd5e90c

View File

@ -63,7 +63,7 @@ class LoadExtensions implements Serializable {
loadCommand += ' --ibconnection "/F./build/ib"'
String vrunnerSettings = getVrunnerSettings(this.config, this.stageName)
if (steps.fileExists(vrunnerSettings)) {
if (vrunnerSettings && steps.fileExists(vrunnerSettings)) {
loadCommand += " --settings $vrunnerSettings"
}