You've already forked jenkins-lib
mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2025-08-25 20:09:25 +02:00
Тихий unzip по умолчанию
This commit is contained in:
@@ -41,4 +41,6 @@ interface IStepExecutor {
|
||||
def zip(String dir, String zipFile, String glob)
|
||||
|
||||
def unzip(String dir, String zipFile)
|
||||
|
||||
def unzip(String dir, String zipFile, quiet)
|
||||
}
|
@@ -95,7 +95,7 @@ class StepExecutor implements IStepExecutor {
|
||||
}
|
||||
|
||||
@Override
|
||||
def unzip(String dir, String zipFile) {
|
||||
steps.unzip dir: dir, zipFile: zipFile
|
||||
def unzip(String dir, String zipFile, quiet = true) {
|
||||
steps.unzip dir: dir, zipFile: zipFile, quiet: quiet
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user