Skip to content

Commit

Permalink
[FIXED JENKINS-7295]
Browse files Browse the repository at this point in the history
[FIXED JENKINS-5171]

Add a space after the tag so the arguments for the tag don't end up including the release goals.
  • Loading branch information
jtnord committed May 2, 2011
1 parent 5b5981b commit 654e890
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -151,8 +151,7 @@ public Environment setUp(@SuppressWarnings("rawtypes") AbstractBuild build, Laun
}

if (scmTag != null) {
buildGoals.append("-Dtag=");
buildGoals.append(scmTag);
buildGoals.append("-Dtag=").append(scmTag).append(' ');
}

buildGoals.append(releaseGoals);
Expand Down

0 comments on commit 654e890

Please sign in to comment.