1
0

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

This commit is contained in:
Nikita Gryzlov
2020-04-29 13:59:42 +03:00
parent 418a8bf819
commit 515a91dcc1
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
}
}