Skip to content

Commit 24fb1ff

Browse files
committed
do follow symlinks when archiving
1 parent 2934db6 commit 24fb1ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/codehaus/plexus/archiver/AbstractArchiver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ public void addFileSet( @Nonnull final FileSet fileSet )
367367
// The PlexusIoFileResourceCollection contains platform-specific File.separatorChar which
368368
// is an interesting cause of grief, see PLXCOMP-192
369369
final PlexusIoFileResourceCollection collection = new PlexusIoFileResourceCollection();
370-
collection.setFollowingSymLinks( false );
370+
collection.setFollowingSymLinks( true );
371371

372372
collection.setIncludes( fileSet.getIncludes() );
373373
collection.setExcludes( fileSet.getExcludes() );

0 commit comments

Comments
 (0)