Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKat Marchán <kzm@sykosomatic.org>2017-05-25 06:45:12 +0300
committerRebecca Turner <me@re-becca.org>2017-05-26 04:55:30 +0300
commitf17f4e6e50ebf315018b812e081e56356d45ba75 (patch)
tree67f2d00415d0319793b11551a3aa898d211952e6 /lib
parent829072040e5d93ddc56996b62246c17e8fcb5a04 (diff)
uninstall: remove stray console.log
Diffstat (limited to 'lib')
-rw-r--r--lib/uninstall.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/uninstall.js b/lib/uninstall.js
index 3fa711257..29a32b393 100644
--- a/lib/uninstall.js
+++ b/lib/uninstall.js
@@ -67,7 +67,6 @@ class Uninstaller extends Installer {
super.loadAllDepsIntoIdealTree(iferr(cb, () => {
removeDeps(this.remove, this.idealTree, saveDeps, (err) => {
- console.log('remove complete')
cb(err)
})
}))