Skip to content

Commit

Permalink
Remove file mover from download-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
cookersjs authored Nov 25, 2019
1 parent 3804164 commit a3071ac
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ public static void main(String[] args) throws Exception {
}

// Move files to downloadDirectory release folder
/*
logger.info("Moving all generated files to " + releaseDownloadDirWithNumber);
File folder = new File(releaseNumber);
File[] releaseFiles = folder.listFiles();
Expand All @@ -205,6 +206,7 @@ public static void main(String[] args) throws Exception {
Files.move(Paths.get(releaseFile.toString()), Paths.get(releaseDownloadDirWithNumber + "/" + releaseFile.getName()), StandardCopyOption.REPLACE_EXISTING);
}
}
*/
if (failedSteps.size() > 0) {
String failedStepsString = StringUtils.join(failedSteps, ", ");
logger.warn("Errors were reported in the following step(s): " + failedStepsString + "\n");
Expand Down

0 comments on commit a3071ac

Please sign in to comment.