Make verify_exports fail on failures again (flutter/engine#6379)

It is now working properly on the bots.
This commit is contained in:
Michael Goderbauer 2018-09-28 10:47:48 -07:00 committed by GitHub
parent f5db83c692
commit 53c7767a56

View File

@ -41,8 +41,8 @@ void main(List<String> arguments) {
int failures = 0;
failures += _checkIos(outPath, nmPath, iosReleaseBuilds);
failures += _checkAndroid(outPath, nmPath, androidReleaseBuilds);
// TODO(goderbauer): Return failing exit code on failure once it works on bots.
print('Failures: $failures'); // exit(failures);
print('Failing checks: $failures');
exit(failures);
}
int _checkIos(String outPath, String nmPath, Iterable<String> builds) {