jira-importer commented on issue #656:
URL: https://github.com/apache/maven-scm/issues/656#issuecomment-2964611500

   **[James 
Nord](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=teilo)** 
commented
   
   Digging into this a bit more all I think is needed is changing lines 155-157 
of SvnSCMProviderRepository.java from
   
       if ( getProtocol() == null )
       {
           return;
       }
   
   to
   
       if ( getProtocol() == null )
       {
           File f = new File(url);
           if (f.exists) {
               this.url = url;
               // can not have hosts etc in local paths so just return or 
surround the later code with an else {...}
               return;
           }
           return;
       }
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to