Skip to content

Commit

Permalink
Merge pull request #270 from jamesqo/patch-3
Browse files Browse the repository at this point in the history
Return non-zero exit code when annotation pipeline fails
  • Loading branch information
inodb authored Feb 5, 2024
2 parents 4268bf4 + 79ff464 commit 5d48eba
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ public static void main(String[] args) {
subMain(args);
} catch (Exception e) {
LOG.error(e.getMessage());
System.exit(1); // Return non-zero exit code so caller can determine if there was an exception thrown
}
}

Expand Down

0 comments on commit 5d48eba

Please sign in to comment.