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 9df2cfa commit 2b7028eCopy full SHA for 2b7028e
src/pycpio/cpio/archive.py
@@ -55,6 +55,7 @@ def _update_inodes(self, entry):
55
if it's a hardlink, remove the data in the copy.
56
"""
57
if entry.header.ino in self.inodes:
58
+ self.logger.log(5, "[%s] Inode already exists: %s" % (entry.header.name, entry.header.ino))
59
if isinstance(entry, CPIO_File) and self[self.inodes[entry.header.ino][0]].data == entry.data:
60
self.logger.info("[%s] New hardlink detected, removing data." % entry.header.name)
61
# Remove the data from the current entry
0 commit comments