Skip to content

Commit e33c654

Browse files
authored
fix: command not found (antonbabenko#251)
1 parent 390a264 commit e33c654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraform_tflint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ tflint_() {
6565

6666
# Print checked PATH **only** if TFLint have any messages
6767
# shellcheck disable=SC2091 # Suppress error output
68-
$(tflint "${ARGS[@]}" 2>&1) || {
68+
$(tflint "${ARGS[@]}" 2>&1) 2> /dev/null || {
6969
echo >&2 -e "\033[1;31m\nERROR in $path_uniq/:\033[0m"
7070
tflint "${ARGS[@]}"
7171
}

0 commit comments

Comments
 (0)