Skip to content

Commit

Permalink
chore: Rename resource dirs to match package names
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Jan 11, 2024
1 parent c5e3461 commit 83f5a53
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static final String getResourceDir(String toolName) {
}

public static final String getResourceFile(String toolName, String fileName) {
return String.format("%s/%s", getResourceDir(toolName), fileName);
return String.format("%s/%s", getResourceDir(toolName.replace('-', '_')), fileName);
}

private static final Path getInstallDescriptorPath(String toolName, String version) {
Expand Down

0 comments on commit 83f5a53

Please sign in to comment.