jira-importer commented on issue #887: URL: https://github.com/apache/maven-scm/issues/887#issuecomment-2964631334
**[Svend Hansen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=svendhhh)** commented The error I'm getting now is very similar, caused by the line: `File file = new File( workingDir, fs.get( i ).getPath() );` in PerforceCheckInCommand line 139. I've now also changed this one to: `File file = null;` `if(fs.get( i ).isAbsolute()) file = new File( fs.get( i ).getPath() );` `else file = new File( workingDir, fs.get( i ).getPath() );` And it now seems to be working completely. I'm not sure if my setup is a bit funny, causing this error, but I can't see any reason not to allow the absolute file paths? Also, I don't know if there are similar "bugs" anywhere else. -- 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]
