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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rebuild.js')
-rw-r--r--lib/rebuild.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rebuild.js b/lib/rebuild.js
index ab372c6ec..70c33e91e 100644
--- a/lib/rebuild.js
+++ b/lib/rebuild.js
@@ -29,9 +29,11 @@ function rebuild (args, cb) {
function cleanBuild (folders, set, cb) {
npm.commands.build(folders, function (er) {
if (er) return cb(er)
+ log.clearProgress()
console.log(folders.map(function (f) {
return set[f] + " " + f
}).join("\n"))
+ log.showProgress()
cb()
})
}