Skip to content

Commit

Permalink
Make ManifestMergerAction worker compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Bencodes committed Dec 14, 2021
1 parent 2ff4124 commit ef047f4
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,6 @@ public static void main(String[] args) throws Exception {
// to the expected location of the output.
Files.copy(manifest, options.manifestOutput, StandardCopyOption.REPLACE_EXISTING);
}
} catch (AndroidManifestProcessor.ManifestProcessingException e) {
// We special case ManifestProcessingExceptions here to indicate that this is
// caused by a build error, not an Bazel-internal error.
logger.log(SEVERE, "Error during merging manifests", e);
System.exit(1); // Don't duplicate the error to the user or bubble up the exception.
} catch (Exception e) {
logger.log(SEVERE, "Error during merging manifests", e);
throw e; // This is a proper internal exception, so we bubble it up.
Expand Down

0 comments on commit ef047f4

Please sign in to comment.