From 2e9fc0c5c090f23cc7e6caf3edf8e29310358a40 Mon Sep 17 00:00:00 2001 From: Ammar Date: Mon, 24 Nov 2025 10:54:16 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20fix:=20suppress=20filename=20in?= =?UTF-8?q?=20make=20help=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #719 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 381edb3c61..866e23f8b9 100644 --- a/Makefile +++ b/Makefile @@ -112,7 +112,7 @@ help: ## Show this help message @echo 'Usage: make [target]' @echo '' @echo 'Available targets:' - @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-20s\033[0m %s\n", $$1, $$2}' + @grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-20s\033[0m %s\n", $$1, $$2}' ## Development ifeq ($(OS),Windows_NT)