Skip to content

Commit

Permalink
fix(terraform_docs): Restore multiply --hook-config args support.…
Browse files Browse the repository at this point in the history
… Regression from v1.95.0
  • Loading branch information
MaxymVlasov committed Dec 24, 2024
1 parent e032273 commit 819893c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hooks/terraform_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ function terraform_docs {
for c in "${configs[@]}"; do

IFS="=" read -r -a config <<< "$c"
key=${config[0]}
# $hook_config receives string like '--foo=bar; --baz=4;' etc.
# It gets split by `;` into array, which we're parsing here ('--foo=bar' ' --baz=4')
# Next line removes leading spaces, to support >1 `--hook-config` args
key="${config[0]## }"
value=${config[1]}

case $key in
Expand Down

0 comments on commit 819893c

Please sign in to comment.