We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc338d7 + 08ad301 commit cdc9c48Copy full SHA for cdc9c48
Makefile
@@ -66,12 +66,12 @@ install: build ## Build and install the binary with the current source code. Use
66
.PHONY: generate
67
generate: generate-testdata generate-docs ## Update/generate all mock data. You should run this commands to update the mock data after your changes.
68
go mod tidy
69
- remove-spaces
+ make remove-spaces
70
71
.PHONY: remove-spaces
72
remove-spaces:
73
@echo "Removing trailing spaces"
74
- @find . -type f -name "*.md" -exec sed -i '' 's/[[:space:]]*$$//' {} +
+ @find . -type f -name "*.md" -exec sed -i '' 's/[[:space:]]*$$//' {} + || true
75
76
.PHONY: generate-testdata
77
generate-testdata: ## Update/generate the testdata in $GOPATH/src/sigs.k8s.io/kubebuilder
0 commit comments