mirror of
https://github.com/tofuutils/pre-commit-opentofu.git
synced 2025-10-15 17:38:54 +02:00
fix: make terraform_docs Windows compatible (#129)
This commit is contained in:
parent
cc4e5e85ba
commit
81770aa0fa
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ terraform_docs_() {
|
|||
local -a -r files=("$@")
|
||||
|
||||
local hack_terraform_docs
|
||||
hack_terraform_docs=$(terraform version | head -1 | grep -c 0.12) || true
|
||||
hack_terraform_docs=$(terraform version | sed -n 1p | grep -c 0.12) || true
|
||||
|
||||
if [[ ! $(command -v terraform-docs) ]]; then
|
||||
echo "ERROR: terraform-docs is required by terraform_docs pre-commit hook but is not installed or in the system's PATH."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue