Skip to content

Commit

Permalink
Print clang-tidy job exception (flutter#33756)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmagman authored Jun 1, 2022
1 parent 6236572 commit 81d7926
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/clang_tidy/lib/clang_tidy.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,10 @@ class ClangTidy {
}
_errSink.writeln('❌ Failures for ${job.name}:');
_errSink.writeln(job.result.stdout);
final Exception? exception = job.exception;
if (exception != null) {
_errSink.writeln(exception);
}
result = 1;
}
return result;
Expand Down

0 comments on commit 81d7926

Please sign in to comment.