1
0

Merge pull request #30 from otymko/feat/28-syntax-check-exception-file

This commit is contained in:
Nikita Fedkin
2021-11-04 10:47:54 +03:00
committed by GitHub
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)