Skip to content

Commit

Permalink
fix(apply): reduce noise when subtasks fail
Browse files Browse the repository at this point in the history
Fixes #77
  • Loading branch information
ianwremmel committed Apr 13, 2018
1 parent 24b3ca0 commit 8772d75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/packages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export async function apply(
log(options, debug, after(packages, errors));

if (errors.length) {
console.error(errors);
errors.forEach((e) => console.error(e.toString()));
process.exit(1);
}
}
Expand Down

0 comments on commit 8772d75

Please sign in to comment.