summaryrefslogtreecommitdiff
path: root/deps/npm/lib/uninstall.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/lib/uninstall.js')
-rw-r--r--deps/npm/lib/uninstall.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/deps/npm/lib/uninstall.js b/deps/npm/lib/uninstall.js
index 2176048843..9e3d91ac40 100644
--- a/deps/npm/lib/uninstall.js
+++ b/deps/npm/lib/uninstall.js
@@ -63,12 +63,11 @@ Uninstaller.prototype.loadArgMetadata = function (next) {
Uninstaller.prototype.loadAllDepsIntoIdealTree = function (cb) {
validate('F', arguments)
- log.silly('uninstall', 'loadAllDepsIntoIdealtree')
- var saveDeps = getSaveType(this.args)
+ log.silly('uninstall', 'loadAllDepsIntoIdealTree')
+ var saveDeps = getSaveType()
- var cg = this.progress.loadAllDepsIntoIdealTree
+ var cg = this.progress['loadIdealTree:loadAllDepsIntoIdealTree']
var steps = []
-
steps.push(
[removeDeps, this.args, this.idealTree, saveDeps, cg.newGroup('removeDeps')],
[loadExtraneous, this.idealTree, cg.newGroup('loadExtraneous')])