Skip to content

Commit

Permalink
update lerna no changes detection
Browse files Browse the repository at this point in the history
  • Loading branch information
jchip committed Jan 7, 2021
1 parent 8d7da52 commit e873427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xclap.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ xclap.load({
return xclap.serial(tasks);
})
.catch(err => {
if (err.output.stderr.indexOf("No packages need updating") < 0) {
if (!err.output.stderr.includes("No changed packages found")) {
throw err;
}
});
Expand Down

0 comments on commit e873427

Please sign in to comment.