src/main/java/org/apache/netbeans/nbpackage/ArchiveUtils.java [199:206]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                Files.deleteIfExists(entryExtractPath);
                Files.createSymbolicLink(entryExtractPath, linkTarget);
            } else {
                if (entry.isDirectory()) {
                    Files.createDirectories(entryExtractPath);
                } else {
                    Files.createDirectories(entryExtractPath.getParent());
                    Files.copy(archiveInputStream, entryExtractPath, StandardCopyOption.REPLACE_EXISTING);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/netbeans/nbpackage/ArchiveUtils.java [342:349]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Files.deleteIfExists(entryExtractPath);
            Files.createSymbolicLink(entryExtractPath, linkTarget);
        } else {
            if (entry.isDirectory()) {
                Files.createDirectories(entryExtractPath);
            } else {
                Files.createDirectories(entryExtractPath.getParent());
                Files.copy(archiveInputStream, entryExtractPath, StandardCopyOption.REPLACE_EXISTING);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



