Skip to content

Commit

Permalink
Fix build error after merging jglick's fix for JENKINS-12298
Browse files Browse the repository at this point in the history
  • Loading branch information
kmbell committed Jan 11, 2012
1 parent d49c172 commit ce27ef5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public boolean checkout(AbstractBuild<?, ?> build, Launcher launcher,
for(Action a : actions) {
if(!scmActions.contains(a) && a instanceof SCMRevisionState) {
scmActions.add(a);
revisionState.add(scm.getClass().getName(), (SCMRevisionState) a);
revisionState.add(scm, workspace, build, (SCMRevisionState) a);
}
}

Expand Down

0 comments on commit ce27ef5

Please sign in to comment.