Skip to content

Commit

Permalink
fix(npm): ignore error status 1 on npm outdated
Browse files Browse the repository at this point in the history
  • Loading branch information
mastilver committed Oct 27, 2016
1 parent 2a7ad12 commit ec4057c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function run(config, done) {
};
}

if (err) {
if (err && err.code > 1) {
finish(err);
return;
}
Expand Down

0 comments on commit ec4057c

Please sign in to comment.