Skip to content

Commit

Permalink
Fix JENKINS-13673
Browse files Browse the repository at this point in the history
  • Loading branch information
gboissinot committed May 4, 2012
1 parent 2bec41a commit 94cbd90
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -81,6 +81,7 @@ private String processToolName(String name) {

String result = name.replace("-", "_");
result = result.replace(" ", "_");
result = result.replace(".", "_");
return result;
}

Expand Down

0 comments on commit 94cbd90

Please sign in to comment.