We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 762f7b2 commit 390a264Copy full SHA for 390a264
terraform_tflint.sh
@@ -65,8 +65,10 @@ tflint_() {
65
66
# Print checked PATH **only** if TFLint have any messages
67
# shellcheck disable=SC2091 # Suppress error output
68
- $(tflint "${ARGS[@]}" 2>&1) ||
69
- echo >&2 -e "\033[1;31m\nERROR in $path_uniq/:\033[0m" && tflint "${ARGS[@]}"
+ $(tflint "${ARGS[@]}" 2>&1) || {
+ echo >&2 -e "\033[1;31m\nERROR in $path_uniq/:\033[0m"
70
+ tflint "${ARGS[@]}"
71
+ }
72
73
popd > /dev/null
74
done
0 commit comments