summaryrefslogtreecommitdiff
path: root/doc/onboarding-extras.md
diff options
context:
space:
mode:
authorJonathan Darling <jmdarling@me.com>2016-12-06 13:08:56 -0600
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-12-09 15:53:20 -0500
commit0cd1f54fab3f35c6f53a6106cd9b5299c2c67413 (patch)
tree8d55812e784c27d6377a115d98fed72f435e55db /doc/onboarding-extras.md
parentcffbb326a2893348f137f8c53b141a61274742b1 (diff)
downloadandroid-node-v8-0cd1f54fab3f35c6f53a6106cd9b5299c2c67413.tar.gz
android-node-v8-0cd1f54fab3f35c6f53a6106cd9b5299c2c67413.tar.bz2
android-node-v8-0cd1f54fab3f35c6f53a6106cd9b5299c2c67413.zip
doc: standardizing on make -j4
Standardizes docs to use -j4 instead of -j8 as it appears to be the most inclusive recommendation based on discussion in https://github.com/nodejs/node/pull/9961. PR-URL: https://github.com/nodejs/node/pull/9961 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Diffstat (limited to 'doc/onboarding-extras.md')
-rw-r--r--doc/onboarding-extras.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/onboarding-extras.md b/doc/onboarding-extras.md
index 7b7f60fd00..9e1a4a7ed7 100644
--- a/doc/onboarding-extras.md
+++ b/doc/onboarding-extras.md
@@ -71,7 +71,7 @@ Please use these when possible / appropriate
* major vs. everything else: run last versions tests against this version, if they pass, **probably** minor or patch
* A breaking change helper ([full source](https://gist.github.com/chrisdickinson/ba532fa0e4e243fb7b44)):
```sh
- git checkout $(git show -s --pretty='%T' $(git show-ref -d $(git describe --abbrev=0) | tail -n1 | awk '{print $1}')) -- test; make -j8 test
+ git checkout $(git show -s --pretty='%T' $(git show-ref -d $(git describe --abbrev=0) | tail -n1 | awk '{print $1}')) -- test; make -j4 test
```