mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-30 05:13:01 +02:00
send repo directly to extract and export_tar
This commit is contained in:
@@ -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,
|
||||
)
|
||||
|
||||
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user