1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-02-08 14:29:15 +02:00

Тихий unzip по умолчанию

This commit is contained in:
Nikita Gryzlov 2020-04-29 13:59:42 +03:00
parent 418a8bf819
commit 515a91dcc1
No known key found for this signature in database
GPG Key ID: C1EAE411FEF0BF2F
2 changed files with 4 additions and 2 deletions

View File

@ -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)
}

View File

@ -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
}
}