1
0

feat: #28 Поддежка файла с пропуском ошибок для syntax-check

This commit is contained in:
Tymko Oleg
2021-11-03 23:58:55 +07:00
parent 191388763f
commit 8327efc264
4 changed files with 15 additions and 0 deletions

View File

@@ -51,6 +51,10 @@ def call(JobConfiguration config) {
command += " --mode $checkModes"
}
if (!options.exceptionFile.empty && fileExists(options.exceptionFile)) {
command += " --exception-file $options.exceptionFile"
}
// Запуск синтакс-проверки
cmd(command, true)