From c8a61a1a8b68415ade547d5978d0bef5facda309 Mon Sep 17 00:00:00 2001 From: Astronaut-X-X <48613764+Astronaut-X-X@users.noreply.github.com> Date: Wed, 22 Mar 2023 15:26:42 +0800 Subject: [PATCH] fix: Fix help instruction display is not complete --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index adfe90d..3de9f8a 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ help: @awk '/^[a-zA-Z\-\_0-9]+:/ { \ helpMessage = match(lastLine, /^# (.*)/); \ if (helpMessage) { \ - helpCommand = substr($$1, 0, index($$1, ":")-1); \ + helpCommand = substr($$1, 0, index($$1, ":")); \ helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \ printf "\033[36m%-22s\033[0m %s\n", helpCommand,helpMessage; \ } \