Print clang-tidy job exception (flutter/engine#33756)

This commit is contained in:
Jenn Magder 2022-06-01 14:08:06 -07:00 committed by GitHub
parent 4e896cb6e0
commit 95ae958bbd

View File

@ -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;