Skip to content

Commit

Permalink
Consider digits in "make help" command
Browse files Browse the repository at this point in the history
  • Loading branch information
tnsoftbear committed Oct 25, 2024
1 parent f78ac07 commit 7bb43bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ clean: ## Clean the project from built files
rm -f shipping_service
rm -f shipping_service.exe
help: ## Print this help
@grep -E '^[a-zA-Z_-]+:.*## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@grep -E '^[a-zA-Z0-9_-]+:.*## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

## Local testing

Expand Down Expand Up @@ -74,4 +74,4 @@ hurl: ## Run hurl API testing on localhost installation
test \
test-with-coverage \
tools \
up \
up \

0 comments on commit 7bb43bd

Please sign in to comment.