send repo directly to extract and export_tar

This commit is contained in:
Divyansh Singh 2023-03-20 21:51:45 +05:30
parent 58c95d8015
commit 86587ab2dc
2 changed files with 2 additions and 10 deletions

View File

@ -47,11 +47,7 @@ def export_tar_archive(
+ (('--tar-filter', tar_filter) if tar_filter else ())
+ (('--strip-components', str(strip_components)) if strip_components else ())
+ flags.make_repository_archive_flags(
os.path.abspath(repository)
if ':' not in repository
else os.path.abspath(repository[7:])
if repository.startswith('file://')
else repository,
repository,
archive,
local_borg_version,
)

View File

@ -100,11 +100,7 @@ def extract_archive(
+ (('--progress',) if progress else ())
+ (('--stdout',) if extract_to_stdout else ())
+ flags.make_repository_archive_flags(
os.path.abspath(repository)
if ':' not in repository
else os.path.abspath(repository[7:])
if repository.startswith('file://')
else repository,
repository,
archive,
local_borg_version,
)