From ec17c93135b198fe8d41366ed37adb1b9390287e Mon Sep 17 00:00:00 2001 From: Jan Hentschel Date: Sun, 9 Jul 2023 18:56:47 +0200 Subject: [PATCH] Handle tflint deprecations (#4451) Solve the deprecations introduced in tflint, which are getting removed in v0.47.0. Co-authored-by: Philip Mallegol-Hansen --- lib/functions/worker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/worker.sh b/lib/functions/worker.sh index d77a2372..83909cef 100755 --- a/lib/functions/worker.sh +++ b/lib/functions/worker.sh @@ -284,7 +284,7 @@ function LintCodebase() { LINT_CMD=$( cd "${DIR_NAME}" || exit - ${LINTER_COMMAND} "${FILE_NAME}" 2>&1 + ${LINTER_COMMAND} --filter="${FILE_NAME}" 2>&1 ) else ################################