summaryrefslogtreecommitdiff
path: root/deps/npm/lib/install/action/postinstall.js
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-10-29 16:50:12 -0700
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2015-11-02 14:25:04 -0500
commit507fc53e37d3fc6abb5ce0f7c46c8d7479e647ab (patch)
tree68ea2bbf0733eb1a1977b899040e18d035737a51 /deps/npm/lib/install/action/postinstall.js
parent6e40bf065931e20737875b27ab9ee71eaf5c7f99 (diff)
downloadnode-new-507fc53e37d3fc6abb5ce0f7c46c8d7479e647ab.tar.gz
deps: upgrade npm to 3.3.10
PR-URL: https://github.com/nodejs/node/pull/3599 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'deps/npm/lib/install/action/postinstall.js')
-rw-r--r--deps/npm/lib/install/action/postinstall.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/npm/lib/install/action/postinstall.js b/deps/npm/lib/install/action/postinstall.js
index 5460c8364d..4ca4c8baec 100644
--- a/deps/npm/lib/install/action/postinstall.js
+++ b/deps/npm/lib/install/action/postinstall.js
@@ -1,7 +1,8 @@
'use strict'
var lifecycle = require('../../utils/lifecycle.js')
+var packageId = require('../../utils/package-id.js')
module.exports = function (top, buildpath, pkg, log, next) {
- log.silly('postinstall', pkg.package.name, buildpath)
+ log.silly('postinstall', packageId(pkg), buildpath)
lifecycle(pkg.package, 'postinstall', pkg.path, false, false, next)
}