mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 01:06:50 +00:00
create --paths-from-(stdin|command): normalize paths, fixes #6778
This commit is contained in:
parent
a3a1974c52
commit
28b32e7a57
1 changed files with 1 additions and 0 deletions
|
@ -779,6 +779,7 @@ def create_inner(archive, cache, fso):
|
|||
pipe_bin = sys.stdin.buffer
|
||||
pipe = TextIOWrapper(pipe_bin, errors='surrogateescape')
|
||||
for path in iter_separated(pipe, paths_sep):
|
||||
path = os.path.normpath(path)
|
||||
try:
|
||||
with backup_io('stat'):
|
||||
st = os_stat(path=path, parent_fd=None, name=None, follow_symlinks=False)
|
||||
|
|
Loading…
Reference in a new issue