mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2025-01-05 13:10:28 +02:00
small fixes
This commit is contained in:
parent
316893714f
commit
21538eaac7
@ -99,7 +99,7 @@ class GetExtensions implements Serializable {
|
||||
|
||||
private void extractConvertedExtensions(String sourceDirName, IStepExecutor steps) {
|
||||
if (config.sourceFormat == SourceFormat.EDT) {
|
||||
// распакуем расширения
|
||||
// usntash and unzip the edt to designer format transformation
|
||||
steps.unstash(EdtToDesignerFormatTransformation.EXTENSION_ZIP_STASH)
|
||||
steps.unzip(sourceDirName, EdtToDesignerFormatTransformation.EXTENSION_ZIP)
|
||||
}
|
||||
@ -115,8 +115,7 @@ class GetExtensions implements Serializable {
|
||||
}
|
||||
|
||||
private static String getAbsolutePath(String path, def env) {
|
||||
// Если путь начинается с / или начинается с \\, или начинается с "Буквы диска" и ":"(Прим C:) то это абсолютный путь
|
||||
if (path.startsWith("/") || path.startsWith("\\\\") || path.matches("^[A-Za-z]:.*")) {
|
||||
if (path.startsWith("/") || path.startsWith("\\") || path.matches("^[A-Za-z]:.*")) {
|
||||
return path
|
||||
} else {
|
||||
return "${env.WORKSPACE}/${path}"
|
||||
|
Loading…
Reference in New Issue
Block a user