Skip to content

Commit ec7df3f

Browse files
committed
Update make-best-practices.md
Underscore should not be escaped with a backslash
1 parent 9081206 commit ec7df3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/best-practices/developer/makefile.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Simply add this code snippet to your `Makefile` and you'll get this functionalit
128128
## This help screen
129129
help:
130130
@printf "Available targets:\n\n"
131-
@awk '/^[a-zA-Z\-\_0-9%:\\]+/ { \
131+
@awk '/^[a-zA-Z\-_0-9%:\\]+/ { \
132132
helpMessage = match(lastLine, /^## (.*)/); \
133133
if (helpMessage) { \
134134
helpCommand = $$1; \

0 commit comments

Comments
 (0)