Skip to content

Commit

Permalink
Merge pull request #133 from uhausbrand/JENKINS-23017
Browse files Browse the repository at this point in the history
[Fix JENKINS-23017] delete the tmp workdir also
  • Loading branch information
ndeloof committed May 14, 2014
2 parents 6eddb7e + d771d97 commit a04dcd9
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -1183,6 +1183,7 @@ private String launchCommandWithCredentials(ArgumentListBuilder args, File workD
if (deleteWorkDir) {
try {
Util.deleteContentsRecursive(workDir);
FileUtils.deleteDirectory( workDir );
} catch (IOException ioe) {
listener.getLogger().println("Couldn't delete dir " + workDir.getAbsolutePath() + " : " + ioe);
}
Expand Down

0 comments on commit a04dcd9

Please sign in to comment.