Skip to content

Commit

Permalink
fix: command not found (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxymVlasov authored Oct 15, 2021
1 parent 390a264 commit e33c654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform_tflint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ tflint_() {

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

0 comments on commit e33c654

Please sign in to comment.