Awea / pretty-make

💄 An attempt to make Make pretty
GNU General Public License v3.0
7 stars 1 forks source link

Recipes with only digits do not appear #9

Closed ghost closed 3 years ago

ghost commented 3 years ago

Thank you for building this tool! It liberates me from the bloated shell implementations I find across the Internet.

I noticed recipes with only digits do not appear when I run make help. This is a variant of #7.

h1. example make file

.PHONY: 2020
## Reflect on last year
2020:
    echo "Last year"
## List available commands
help:
    @pretty-make Makefile

I tested this with 0.5.1.

Awea commented 3 years ago

Thanks @efx, this is exactly why I made this little tool :)

I'll fix this issue quickly but I think I'll need to implement a complete grammar for a proper fix.

ghost commented 3 years ago

three cheers for strongly typed wins @Awea! thank you for the rapid turn around.