Skip to content

Commit

Permalink
[FIXED JENKINS-10857]tag this build is missing the tag url field.
Browse files Browse the repository at this point in the history
  • Loading branch information
sogabe committed Sep 21, 2011
1 parent 86d2372 commit ee36875
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main/java/hudson/scm/SubversionSCM.java
Expand Up @@ -684,10 +684,11 @@ public boolean checkout(AbstractBuild build, Launcher launcher, FilePath workspa
List<SvnInfoP> pList = workspace.act(new BuildRevisionMapTask(build, this, listener, externals));
List<SvnInfo> revList= new ArrayList<SvnInfo>(pList.size());
for (SvnInfoP p: pList) {
if (p.pinned)
w.println( p.info.url +'/'+ p.info.revision + "::p");
else
w.println( p.info.url +'/'+ p.info.revision);
if (p.pinned)
w.println( p.info.url +'/'+ p.info.revision + "::p");
else
w.println( p.info.url +'/'+ p.info.revision);
revList.add(p.info);
}
build.addAction(new SubversionTagAction(build,revList));
} finally {
Expand Down

0 comments on commit ee36875

Please sign in to comment.