Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[fix] Don't show progress bar when outputting in raw mode
Fixes #356.
Closes #357.
  • Loading branch information
mmalecki committed Nov 11, 2012
1 parent 3687970 commit 1c0e37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jitsu/package.js
Expand Up @@ -427,7 +427,7 @@ package.updateTarball = function (version, pkg, existing, firstSnapshot, callbac
return err ? callback(err) : callback(null, version, pkg);
});

if(emitter) {
if (emitter && !jitsu.config.get('raw')) {
var size;
emitter.on('start', function(stats) {
size = stats.size;
Expand Down

0 comments on commit 1c0e37b

Please sign in to comment.