elharo commented on PR #28:
URL: https://github.com/apache/maven-doxia-site/pull/28#issuecomment-1519071232
This is the PLexus code so I'm betting it's dying on a symlink:
```
if ( file.isFile() )
{
destination = destination.getParentFile();
if ( onlyModifiedFiles )
{
copyFileToDirectoryIfModified( file, destination );
}
else
{
copyFileToDirectory( file, destination );
}
}
else if ( file.isDirectory() )
{
if ( !destination.exists() && !destination.mkdirs() )
{
throw new IOException( "Could not create destination
directory '" + destination.getAbsolutePath()
+ "'." );
}
copyDirectoryStructure( file, destination,
rootDestinationDirectory, onlyModifiedFiles );
}
else
{
throw new IOException( "Unknown file type: " +
file.getAbsolutePath() );
}
}
```
--
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]