mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-03 13:45:59 -04:00
Exclude directories in is_hardlink_master
This commit is contained in:
parent
ad50b2c316
commit
345f01413e
1 changed files with 1 additions and 1 deletions
|
|
@ -1200,7 +1200,7 @@ class Archiver:
|
|||
return 'source' not in item or not hardlinkable(item.mode) or item.source in hardlink_masters
|
||||
|
||||
def is_hardlink_master(item):
|
||||
return item.get('hardlink_master', True) and 'source' not in item
|
||||
return item.get('hardlink_master', True) and 'source' not in item and hardlinkable(item.mode)
|
||||
|
||||
def update_hardlink_masters(item1, item2):
|
||||
if is_hardlink_master(item1) or is_hardlink_master(item2):
|
||||
|
|
|
|||
Loading…
Reference in a new issue