Skip to content

Commit

Permalink
fix: Fix help instruction display is not complete (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
Astronaut-X-X committed Apr 8, 2023
1 parent 99ff631 commit 1840b20
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 @@ -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; \
} \
Expand Down

0 comments on commit 1840b20

Please sign in to comment.