Skip to content

Commit

Permalink
Merge pull request #6291 from bndtools/error_message_fix
Browse files Browse the repository at this point in the history
fixes misleading error message
  • Loading branch information
pkriens authored Sep 26, 2024
2 parents ecbf449 + 6601968 commit 68f45dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ private void doExtra(PutOptions options, ReleaseDTO instructions, IPom pom, Rele
String clazz = extra.clazz;
File file = new File(path);
if (!file.isFile())
reporter.error("-release-maven.extra contains a path to a file that does not exist: %s",
reporter.error("-release-maven archive contains a path to a file that does not exist: %s",
file);
else {
try (Resource r = new FileResource(file)) {
Expand Down

0 comments on commit 68f45dd

Please sign in to comment.