From 8eb571a27836d16d228d58608d4aa636bd97ccbb Mon Sep 17 00:00:00 2001 From: Bryan Huhta Date: Thu, 22 Feb 2024 13:51:01 -0700 Subject: [PATCH] Fix makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bab318d96b..446e7d6e92 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ HELM_ARGS = .PHONY: help help: ## Describe useful make targets - @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "%-30s %s\n", $$1, $$2}' + @grep -E '^[a-zA-Z_/-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ": .*?## "}; {printf "%-50s %s\n", $$1, $$2}' .PHONY: all all: lint test build ## Build, test, and lint (default)