mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2025-02-08 14:29:15 +02:00
Тихий unzip по умолчанию
This commit is contained in:
parent
418a8bf819
commit
515a91dcc1
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user