We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2c841 commit 42b451bCopy full SHA for 42b451b
src/main/java/org/codehaus/plexus/archiver/AbstractArchiver.java
@@ -363,7 +363,7 @@ public void addFileSet( @Nonnull final FileSet fileSet )
363
364
private boolean isSymlinkSupported()
365
{
366
- return Os.isFamily( Os.FAMILY_UNIX ) && Java7Reflector.isAtLeastJava7();
+ return (Os.isFamily( Os.FAMILY_UNIX ) || Os.isFamily( Os.FAMILY_WINDOWS )) && Java7Reflector.isAtLeastJava7();
367
}
368
369
@Override
0 commit comments