From bb149c02c9470100b473ae38b29a21dfa5909629 Mon Sep 17 00:00:00 2001 From: Toshiya-Kato Date: Sat, 10 Feb 2024 23:54:02 +0900 Subject: [PATCH] Disable SC2086 --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 40204fb..6d56538 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,6 +11,7 @@ echo "${INPUT_ENVVARS}" | while IFS= read -r line; do export line done +# shellcheck disable=SC2086 terraform init ${INPUT_TERRAFORM_INIT_OPTIONS} terraform validate -json \ | jq -r '.diagnostics[] | "\(.range.filename):\(.range.start.line):\(.range.start.column): \(.detail)"' \