Skip to content

Commit

Permalink
skip missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
rjernst committed Dec 3, 2024
1 parent 5918390 commit 2a54218
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ private static void createBuildArchiveTar(List<File> files, File projectDir, Fil
for (Path path : files.stream().map(File::toPath).toList()) {
if (Files.exists(path) == false) {
log.warn("File disappeared before it could be added to CI archive: " + path);
continue;
} else if (!Files.isRegularFile(path)) {
throw new IOException("Support only file!: " + path);
}
Expand Down

0 comments on commit 2a54218

Please sign in to comment.