Skip to content

Commit

Permalink
Ignore all Java exceptions when looking for Linux musl support (#7844)
Browse files Browse the repository at this point in the history
  • Loading branch information
mallman authored Apr 28, 2022
1 parent a94e1b1 commit f7db16a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ static boolean isMuslBased() {
});

return muslRelatedMemoryMappedFilename.isPresent();
} catch (IOException ignored) {
} catch (Exception ignored) {
// ignored
}
return false;
Expand Down

0 comments on commit f7db16a

Please sign in to comment.