mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
chore: add make help target (#3405)
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
This commit is contained in:
parent
36f532840d
commit
4ad7607ea4
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
@ -434,3 +434,11 @@ verify-helm: gen-helm ## Check Helm charts are up to date
|
|||
@echo 'If this test fails, it is because the git diff is non-empty after running "make gen-helm".'
|
||||
@echo 'To correct this, locally run "make gen-helm", commit the changes, and re-run tests.'
|
||||
git diff --quiet --exit-code charts
|
||||
|
||||
##################################
|
||||
# HELP
|
||||
##################################
|
||||
|
||||
.PHONY: help
|
||||
help: ## Shows the available commands
|
||||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||
|
|
Loading…
Reference in a new issue