Skip to content

Commit 63a080f

Browse files
author
Eric Stroczynski
authored
Makefile: run cli-doc generator directly (#4033)
1 parent c3e2231 commit 63a080f

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ setup-k8s:
110110
generate: cli-doc samples bindata ## Run all non-release generate targets
111111

112112
cli-doc: ## Generate CLI documentation
113-
./hack/generate/cli-doc/cli-doc.sh
113+
go run ./hack/generate/cli-doc/gen-cli-doc.go
114114

115115
samples: ## Generate samples
116116
go run ./hack/generate/samples/generate_all.go

hack/generate/cli-doc/gen-cli-doc.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

hack/tests/sanity-check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ go fmt ./...
77

88
./hack/check-license.sh
99
./hack/check-error-log-msg-format.sh
10-
./hack/generate/cli-doc/gen-cli-doc.sh
10+
make cli-doc
1111
go run ./hack/generate/changelog/gen-changelog.go -validate-only
1212

1313
make install
14-
go run ./hack/generate/samples/generate_all.go
14+
make samples
1515

1616
# Make sure repo is still in a clean state.
1717
git diff --exit-code

0 commit comments

Comments
 (0)