I am also interested in a fix... But I assume, as it hasn't been fixed the past 3 years nothing will happen unfortunately! Bummer. Generally I took a quick look at the patch provided by Martin Hubert. The idea is to add a simple:

if(scm instanceof MultiSCM) {
   for(SCM multiScm : ((MultiSCM)scm).getConfiguredSCMs()) {
      if(multiScm instanceof GitSCM)
         oldPerform((GitSCM) multiScm, build, launcher, listener);
   ...
else if(scm instanceof GitSCM)
   return oldPerform((GitSCM) scm, build, launcher, listener);
else return false;

(stripping a little logic for "success" management) to the current perform method... It would be great if you could provide such a patch.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to