Skip to content

Commit

Permalink
Merge pull request #141 from dlvenable/whitespace-fix
Browse files Browse the repository at this point in the history
Replace whitespace with underscore - JENKINS-17195
  • Loading branch information
ndeloof committed Mar 20, 2013
2 parents b0a6db0 + d5af3de commit 68eea05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/git/GitSCM.java
Expand Up @@ -1087,7 +1087,7 @@ public boolean checkout(final AbstractBuild build, Launcher launcher,

final String gitExe = getGitExe(build.getBuiltOn(), listener);

final String buildnumber = "jenkins-" + projectName + "-" + buildNumber;
final String buildnumber = "jenkins-" + projectName.replace(" ", "_") + "-" + buildNumber;

final BuildData buildData = getBuildData(build.getPreviousBuild(), true);

Expand Down

0 comments on commit 68eea05

Please sign in to comment.