From feabecc9b3461fff58e0a29541854d3e7a5402c0 Mon Sep 17 00:00:00 2001 From: Milos Jajac Date: Wed, 17 Nov 2021 19:16:38 +0100 Subject: [PATCH] fix: typo in arg name for terraform-docs (#283) --- README.md | 2 +- terraform_docs.sh | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8a60c6200..1720626bc 100644 --- a/README.md +++ b/README.md @@ -329,7 +329,7 @@ Unlike most other hooks, this hook triggers once if there are any changed files - id: terraform_docs args: - --hook-config=--path-to-file=README.md # Valid UNIX path. I.e. ../TFDOC.md or docs/README.md etc. - - --hook-config=--add-to-exiting-file=true # Boolean. true or false + - --hook-config=--add-to-existing-file=true # Boolean. true or false - --hook-config=--create-file-if-not-exist=true # Boolean. true or false ``` diff --git a/terraform_docs.sh b/terraform_docs.sh index 1152cb110..3b04afe24 100755 --- a/terraform_docs.sh +++ b/terraform_docs.sh @@ -119,7 +119,7 @@ terraform_docs() { # Get hook settings # local text_file="README.md" - local add_to_exiting=false + local add_to_existing=false local create_if_not_exist=false configs=($hook_config) @@ -132,8 +132,8 @@ terraform_docs() { --path-to-file) text_file=$value ;; - --add-to-exiting-file) - add_to_exiting=$value + --add-to-existing-file) + add_to_existing=$value ;; --create-file-if-not-exist) create_if_not_exist=$value @@ -171,10 +171,10 @@ terraform_docs() { [[ ! -f "$text_file" ]] && popd > /dev/null && continue # - # If `--add-to-exiting-file=true` set, check is in file exist "hook markers", + # If `--add-to-existing-file=true` set, check is in file exist "hook markers", # and if not - append "hook markers" to the end of file. # - if $add_to_exiting; then + if $add_to_existing; then HAVE_MARKER=$(grep -o '' "$text_file" || exit 0) if [ ! "$HAVE_MARKER" ]; then