Skip to content

Commit 775812c

Browse files
committed
Fixed issue
1 parent 7f38d5e commit 775812c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/mangorage/bootstrap/internal/JarHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ static void handle(final Path source, final Path target) throws IOException {
4545
Path dest = target.resolve(jar.getFileName());
4646
Files.copy(jar, dest, StandardCopyOption.REPLACE_EXISTING);
4747
seenModules.put(moduleName, jar);
48-
System.out.println("Added module: " + moduleName);
48+
System.out.println("Added module: " + moduleName + " from " + jar);
4949
} else {
5050
System.out.println("Duplicate module ignored: " + moduleName + " from " + jar);
5151
}

0 commit comments

Comments
 (0)