From 4ce029d7c5caad97b0e75c62ebb2dd5136ad89ed Mon Sep 17 00:00:00 2001 From: Nuru Date: Mon, 4 Mar 2024 15:25:25 -0800 Subject: [PATCH] Ignore lockfiles while building Terraform docs (#383) --- modules/docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/docs/Makefile b/modules/docs/Makefile index 165e49c2..e27369da 100644 --- a/modules/docs/Makefile +++ b/modules/docs/Makefile @@ -18,7 +18,7 @@ docs/targets.md: docs/deps ## Update `docs/terraform.md` from `terraform-docs` docs/terraform.md: docs/deps packages/install/terraform-docs @echo "" > $@ ; \ - terraform-docs md . >> $@ ; \ + terraform-docs --lockfile=false md . >> $@ ; \ echo "" >> $@ .PHONY : docs/github-action.md