Skip to content

Commit

Permalink
fix: Correctly format makefile help rule (grafana#3021)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanhuhta authored Feb 23, 2024
1 parent 21e33e7 commit 30d1c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 30d1c74

Please sign in to comment.