Skip to content

Commit 2e9fc0c

Browse files
committed
🤖 fix: suppress filename in make help output
Fixes #719
1 parent fec2bfc commit 2e9fc0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ help: ## Show this help message
112112
@echo 'Usage: make [target]'
113113
@echo ''
114114
@echo 'Available targets:'
115-
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-20s\033[0m %s\n", $$1, $$2}'
115+
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-20s\033[0m %s\n", $$1, $$2}'
116116

117117
## Development
118118
ifeq ($(OS),Windows_NT)

0 commit comments

Comments
 (0)