Skip to content

Commit

Permalink
chore(Makefile): fix help target when Makefile.local exists
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras authored and winged committed Jul 26, 2024
1 parent 5db0e55 commit 483c388
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 @@ -8,7 +8,7 @@ ORCHESTRATOR = docker

.PHONY: help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort -k 1,1 | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@grep -hE '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort -k 1,1 | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: start
start: ## Start the application
Expand Down

0 comments on commit 483c388

Please sign in to comment.