1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-01 04:37:34 +00:00

Merge pull request #3133 from ThomasWaldmann/fix-nonlocal-path-detection-1.1

fix detection of non-local path, fixes #3108
This commit is contained in:
TW 2017-10-11 14:10:18 +02:00 committed by GitHub
commit 42046524e5

View file

@ -557,7 +557,7 @@ def extract_item(self, item, restore_attrs=True, dry_run=False, stdout=False, sp
original_path = original_path or item.path
dest = self.cwd
if item.path.startswith(('/', '..')):
if item.path.startswith(('/', '../')):
raise Exception('Path should be relative and local')
path = os.path.join(dest, item.path)
# Attempt to remove existing files, ignore errors on failure