We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8331117 + 7563d61 commit e392cd0Copy full SHA for e392cd0
GNUmakefile
@@ -59,9 +59,13 @@ vet:
59
exit 1; \
60
fi
61
62
-docs:
63
- @echo "==> Generating Provider Documentation..."
+docs-prepare:
+ @echo "==> Setting up docs..."
64
which tfplugindocs || go get github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs@${TFPLUGINDOCS_VERSION}
65
+
66
+docs: docs-prepare
67
+ @echo "==> Generating Provider Documentation..."
68
tfplugindocs generate
69
-.PHONY: build test testacc vet fmt fmtcheck lint tools test-compile docs
70
+.PHONY: build test testacc vet fmt fmtcheck lint tools test-compile docs docs-prepare
71
0 commit comments