Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/mergerfs.dup
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,10 @@ def main():
relpath = mergerfs_relpath(fullpath)
existing = mergerfs_all_basepaths(fullpath,relpath)

if not existing:
printf("Missing %s on all paths" % relpath)
continue

srcpath = dupfun(basepath,relpath,existing)
srcfile = os.path.join(srcpath,relpath)
srcfile_size = os.lstat(srcfile).st_size
Expand Down