Skip to content

Commit

Permalink
[JENKINS-12235] root cause is hidden by by script deletion failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ndeloof committed Dec 11, 2012
1 parent 31fd0c9 commit 8e74242
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/main/java/hudson/tasks/CommandInterpreter.java
Expand Up @@ -102,6 +102,8 @@ public boolean perform(AbstractBuild<?,?> build, Launcher launcher, TaskListener
} catch (IOException e) {
Util.displayIOException(e,listener);
e.printStackTrace( listener.fatalError(Messages.CommandInterpreter_UnableToDelete(script)) );
} catch (Exception e) {
e.printStackTrace( listener.fatalError(Messages.CommandInterpreter_UnableToDelete(script)) );
}
}
}
Expand Down

0 comments on commit 8e74242

Please sign in to comment.