diff options
author | Forrest L Norvell <forrest@npmjs.com> | 2015-03-13 02:07:27 -0700 |
---|---|---|
committer | Jeremiah Senkpiel <fishrock123@rocketmail.com> | 2015-03-15 21:41:52 -0400 |
commit | 7d0baf174155195bcc93ec63716118a3696095d7 (patch) | |
tree | 7964cba8d07b6f0954e43497a4d40a9b5a4de814 /deps/npm/lib/cache/add-remote-tarball.js | |
parent | 4eb8810a27a710bcfdf15fc03fbb22a65e655aff (diff) | |
download | node-new-7d0baf174155195bcc93ec63716118a3696095d7.tar.gz |
deps: upgrade npm to 2.7.1
PR-URL: https://github.com/iojs/io.js/pull/1142
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
Diffstat (limited to 'deps/npm/lib/cache/add-remote-tarball.js')
-rw-r--r-- | deps/npm/lib/cache/add-remote-tarball.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/npm/lib/cache/add-remote-tarball.js b/deps/npm/lib/cache/add-remote-tarball.js index e87ac54bb1..66d2200966 100644 --- a/deps/npm/lib/cache/add-remote-tarball.js +++ b/deps/npm/lib/cache/add-remote-tarball.js @@ -19,8 +19,8 @@ function addRemoteTarball (u, pkgData, shasum, auth, cb_) { function cb (er, data) { if (data) { data._from = u - data._shasum = data._shasum || shasum data._resolved = u + data._shasum = data._shasum || shasum } cb_(er, data) } |