Skip to content

Commit

Permalink
fix: remove unnecessary return
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Oct 14, 2019
1 parent a4a5c61 commit 66f4c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/adio.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ try {
const packagesWithErrors = results.filter(r => r.errors.count);
if (packagesWithErrors.length === 0) {
console.log(chalk.green("✅ All dependencies in order!"));
return process.exit(0);
process.exit(0);
}

packagesWithErrors.forEach((pckg, index) => {
Expand Down

0 comments on commit 66f4c8f

Please sign in to comment.