-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: use echo command instead of shell comments #22293
Conversation
Makefile
Outdated
$(MAKE) -s build-addons | ||
$(MAKE) -s build-addons-napi | ||
$(MAKE) -s cctest | ||
$(MAKE) -s jstest | ||
|
||
.PHONY: test-only | ||
test-only: all ## For a quick test, does not run linter or build docs. | ||
# Build the addons before running the tests so the test results | ||
# can be displayed together | ||
$(MAKE) build-addons |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed on purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, that was a mistake 😞 Thanks for catching that. I'll update shortly.
Currently, there are a few recipes where comments are indented and being passed to the shell. This commit updates these comments to use the echo command instead, which is the more common approach used in other recipes in the makefile.
d7ebe84
to
c1d2e7e
Compare
Rerun of failing node-test-commit-freebsd ✅ |
Landed in 6bc43ae. |
Currently, there are a few recipes where comments are indented and being passed to the shell. This commit updates these comments to use the echo command instead, which is the more common approach used in other recipes in the makefile. PR-URL: #22293 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jon Moss <[email protected]>
Currently, there are a few recipes where comments are indented and being passed to the shell. This commit updates these comments to use the echo command instead, which is the more common approach used in other recipes in the makefile. PR-URL: #22293 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jon Moss <[email protected]>
Currently, there are a few recipes where comments are indented and being passed to the shell. This commit updates these comments to use the echo command instead, which is the more common approach used in other recipes in the makefile. PR-URL: #22293 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jon Moss <[email protected]>
Currently, there are a few recipes where comments are indented
and being passed to the shell.
This commit updates these comments to use the echo command instead,
which is the more common approach used in other recipes in the
makefile.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes