From 45cb97356e2f4635683885e628926b5367c83437 Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Tue, 27 Apr 2021 15:21:58 +0000 Subject: [PATCH] chore: document Makefile target `make help` shows more now. Signed-off-by: Alexey Palazhchenko --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 73ff6a41d..f47844c03 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ export HELP_MENU_HEADER help: ## This help menu. @echo "$$HELP_MENU_HEADER" - @grep -E '^[a-zA-Z%_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' + @grep -E '^[a-zA-Z0-9%_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' # Build Abstractions @@ -138,7 +138,7 @@ clusterctl-release: release ./hack/scripts/generate-clusterctl-config.sh .PHONY: run-sfyra -run-sfyra: talos-artifacts clusterctl-release +run-sfyra: talos-artifacts clusterctl-release ## Run Sfyra integration test. @ARTIFACTS=$(ARTIFACTS) \ CLUSTERCTL_CONFIG=$(SFYRA_CLUSTERCTL_CONFIG) \ TALOS_RELEASE=$(TALOS_RELEASE) \