mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 22:53:45 +00:00

PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
9 lines
288 B
JavaScript
9 lines
288 B
JavaScript
'use strict'
|
|
var path = require('path')
|
|
|
|
module.exports = function (top, buildpath, pkg, log, next) {
|
|
log.warn('update-linked', path.relative(top, pkg.path), 'needs updating to', pkg.package.version,
|
|
'from', pkg.oldPkg.package.version, "but we can't, as it's a symlink")
|
|
next()
|
|
}
|