Skip to content

Commit

Permalink
Fix ASCII banner printing (apache#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
adutra authored Dec 11, 2024
1 parent 1ef5ac1 commit 9e828a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public static void main(final String[] args) throws Exception {
}

private static void printAsciiArt() throws IOException {
URL url = PolarisApplication.class.getResource("banner.txt");
URL url = PolarisApplication.class.getResource("/org/apache/polaris/service/banner.txt");
try (InputStream in =
requireNonNull(url, "banner.txt not found on classpath")
.openConnection()
Expand Down

0 comments on commit 9e828a5

Please sign in to comment.