Skip to content

Commit

Permalink
Added create temp dir for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
martingrossmann committed Jan 30, 2025
1 parent eaa8fd5 commit 0edd406
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public Path finalizeReport() {

if (Files.exists(tempReportDirectory)) {
log().debug("Temporary directory is {}", tempReportDirectory);
Files.createDirectories(finalReportPath);
PathUtils.copyDirectory(tempReportDirectory, finalReportPath);
currentReportDirectory = finalReportPath;
log().info("Report written to " + finalReportPath.toAbsolutePath());
Expand Down

0 comments on commit 0edd406

Please sign in to comment.