BSD compat for 9493de4 (#9922)

automerge
This commit is contained in:
Trent Nelson 2020-05-07 17:38:33 -06:00 committed by GitHub
parent 2ac50177a6
commit f12c6c1ed1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -204,13 +204,13 @@ pub fn archive_snapshot_package(snapshot_package: &AccountsPackage) -> Result<()
let args = vec![
archive_options,
archive_path.to_str().unwrap(),
"--use-compress-program",
compression_option,
"-C",
staging_dir.path().to_str().unwrap(),
TAR_ACCOUNTS_DIR,
TAR_SNAPSHOTS_DIR,
TAR_VERSION_FILE,
"-I",
compression_option,
];
let output = std::process::Command::new("tar").args(&args).output()?;