Skip to content

Commit

Permalink
Merge pull request #103 from algoRhythm99/master
Browse files Browse the repository at this point in the history
[FIXES JENKINS-15391] - Fix for NullPointerException on tag publishing
  • Loading branch information
ndeloof committed Oct 4, 2012
2 parents 4817492 + 6ec1432 commit b85e054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/git/GitPublisher.java
Expand Up @@ -261,7 +261,7 @@ gitExe, new FilePath(workspace),
}
if (tagResult) {
final String tagName = environment.expand(t.getTagName());
final String tagMessage = environment.expand(t.getTagMessage());
final String tagMessage = hudson.Util.fixNull(environment.expand(t.getTagMessage()));
final String targetRepo = environment.expand(t.getTargetRepoName());

try {
Expand Down

0 comments on commit b85e054

Please sign in to comment.