Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-20730] Use correct folder in log message
  • Loading branch information
daniel-beck committed Feb 4, 2014
1 parent 48cb130 commit 5ba9bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/diagnostics/ooom/BuildPtr.java
Expand Up @@ -89,7 +89,7 @@ public void fix(TaskListener listener) throws IOException, InterruptedException
File dir = new File(job.getRootDir(), "outOfOrderBuilds");
dir.mkdirs();
File dst = new File(dir, buildDir.getName());
listener.getLogger().println("Renaming "+dir);
listener.getLogger().println("Renaming "+buildDir);
listener.getLogger().println(" -> "+dst);
if (!buildDir.renameTo(dst)) {
FilePath bd = new FilePath(buildDir);
Expand Down

0 comments on commit 5ba9bf4

Please sign in to comment.