Commit 4b24eb82 by Dane Springmeyer

disable download progress reporter for now since it will not play nicely with other npm installs

parent feb40e4d
...@@ -215,7 +215,7 @@ if (opts.force) { ...@@ -215,7 +215,7 @@ if (opts.force) {
} }
log('Checking for ' + from); log('Checking for ' + from);
util.download(from,{progress:true}, function(err,buffer) { util.download(from,{progress:false}, function(err,buffer) {
if (err) { if (err) {
log(from + ' not found, falling back to source compile (' + err + ')'); log(from + ' not found, falling back to source compile (' + err + ')');
return build(opts,done); return build(opts,done);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment