Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
rjernst committed Dec 2, 2024
1 parent 3e7159d commit 9829c77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ private static void createBuildArchiveTar(List<File> files, File projectDir, Fil
tOut.setBigNumberMode(TarArchiveOutputStream.BIGNUMBER_STAR);
for (Path path : files.stream().map(File::toPath).toList()) {
if (!Files.isRegularFile(path)) {
throw new IOException("Support only file!");
throw new IOException("Support only file!: " + path);
}

long entrySize = Files.size(path);
Expand Down

0 comments on commit 9829c77

Please sign in to comment.