diff options
author | Spencer Greene <spencerwgreene@gmail.com> | 2018-04-16 20:46:25 -0400 |
---|---|---|
committer | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2018-04-19 22:45:22 -0700 |
commit | a456775efa9ea284dd1a1d37602699bfb5bbd561 (patch) | |
tree | dd1a92e99f244c6ac615e0d9b6a87544f3cde9ca | |
parent | e32eddc550eb1aad8fe291a2808c22d1d6142aa5 (diff) | |
download | node-new-a456775efa9ea284dd1a1d37602699bfb5bbd561.tar.gz |
doc: fix inconsistency in documentation for building
Specifically, fix the inconsistency where the documentation
suggests running "$ make test" instead of "$ make -j4 test".
The "-j4" flag uses multiple processes, making the command
faster.
Fixes: https://github.com/nodejs/node/issues/19919
PR-URL: https://github.com/nodejs/node/pull/20091
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
-rw-r--r-- | BUILDING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BUILDING.md b/BUILDING.md index c57905b75a..618427eaef 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -179,10 +179,10 @@ If you are running tests prior to submitting a Pull Request, the recommended command is: ```console -$ make test +$ make -j4 test ``` -`make test` does a full check on the codebase, including running linters and +`make -j4 test` does a full check on the codebase, including running linters and documentation tests. Optionally, continue below. |