summaryrefslogtreecommitdiff
path: root/doc/guides
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2019-04-05 15:15:38 -0400
committerMyles Borins <mylesborins@google.com>2019-04-06 20:57:30 -0400
commit21b739fb69850763f5d18ef864f592cc9a843de4 (patch)
tree4f83b4164aea4034167dd16d0dfbc5bc1ffee47e /doc/guides
parent033f6b566ebe9689ab1e6e3bbec5f649e6d14896 (diff)
downloadandroid-node-v8-21b739fb69850763f5d18ef864f592cc9a843de4.tar.gz
android-node-v8-21b739fb69850763f5d18ef864f592cc9a843de4.tar.bz2
android-node-v8-21b739fb69850763f5d18ef864f592cc9a843de4.zip
doc: add missing step to npm release process
PR-URL: https://github.com/nodejs/node/pull/27105 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/guides')
-rw-r--r--doc/guides/maintaining-npm.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/guides/maintaining-npm.md b/doc/guides/maintaining-npm.md
index 67a4a9fcff..9e953ed027 100644
--- a/doc/guides/maintaining-npm.md
+++ b/doc/guides/maintaining-npm.md
@@ -25,13 +25,14 @@ or if you already have npm cloned make sure the repo is up to date
```console
$ git remote update -p
-$ git reset --hard origin latest
+$ git reset --hard origin/latest
```
## Step 2: Build release
```console
$ git checkout vX.Y.Z
+$ make
$ make release
```