mirror of https://github.com/borgbackup/borg.git
Process files in alphabetical order
This commit is contained in:
parent
650bd69da5
commit
5f75b41fc4
|
@ -97,7 +97,7 @@ class Archiver(object):
|
|||
except OSError, e:
|
||||
self.print_error('%s: %s', path, e)
|
||||
else:
|
||||
for filename in entries:
|
||||
for filename in sorted(entries):
|
||||
self._process(archive, cache, patterns, skip_inodes,
|
||||
os.path.join(path, filename))
|
||||
elif stat.S_ISLNK(st.st_mode):
|
||||
|
|
Loading…
Reference in New Issue