src/pxar/encoder.rs: add new skip_lost_and_found parameter

This commit is contained in:
Dietmar Maurer
2019-07-24 12:21:25 +02:00
parent 6c3c9bceb5
commit 5b72c9b4f7
5 changed files with 20 additions and 8 deletions

View File

@ -26,7 +26,7 @@ fn run_test(dir_name: &str) -> Result<(), Error> {
let path = std::path::PathBuf::from(dir_name);
Encoder::encode(path, &mut dir, &mut writer, None, false, CA_FORMAT_DEFAULT)?;
Encoder::encode(path, &mut dir, &mut writer, None, false, false, CA_FORMAT_DEFAULT)?;
Command::new("cmp")
.arg("--verbose")