1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2024-12-03 09:59:00 +02:00

Добавил приведение к абсолютному пути.

This commit is contained in:
ivanovEV 2024-03-14 23:20:40 +03:00
parent 19951749c2
commit 923725a750

View File

@ -78,8 +78,8 @@ class GetExtensions implements Serializable {
localPathToExtension.copyFrom(new URL(extension.path))
} else {
// If the path is a local file, copy the file
// String localPath = extension.path.startsWith("./") ? "$env.WORKSPACE/${extension.path.substring(1)}" : extension.path
FilePath localFilePath = FileUtils.getFilePath(extension.path)
String localPath = getAbsolutePath(extension.path)
FilePath localFilePath = FileUtils.getFilePath(localPath)
localPathToExtension.copyFrom(localFilePath)
}
}
@ -113,4 +113,13 @@ class GetExtensions implements Serializable {
return false
}
}
private static String getAbsolutePath(String path) {
// Если путь начинается с / или начинается с \\, или начинается с "Буквы диска" и ":"(Прим C:) то это абсолютный путь
if (path.startsWith("/") || path.startsWith("\\\\") || path.matches("^[A-Za-z]:.*")) {
return path
} else {
return "${env.WORKSPACE}/${path}"
}
}
}