mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-01 17:10:21 +00:00
Fix tar extraction count when --quiet (#824)
This commit is contained in:
parent
da9b32a366
commit
11344a6ffd
@ -31,6 +31,7 @@ Categories Used:
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Fix tar extraction count when --quiet [\#824](https://github.com/ouch-org/ouch/pull/824) ([marcospb19](https://github.com/marcospb19))
|
||||
- Fix 7z BadSignature error when compressing and then listing [\#819](https://github.com/ouch-org/ouch/pull/819) ([tommady](https://github.com/tommady))
|
||||
|
||||
### Tweaks
|
||||
|
@ -59,9 +59,8 @@ pub fn unpack_archive(reader: Box<dyn Read>, output_folder: &Path, quiet: bool)
|
||||
Bytes::new(file.size()),
|
||||
utils::strip_cur_dir(&output_folder.join(file.path()?)),
|
||||
));
|
||||
|
||||
files_unpacked += 1;
|
||||
}
|
||||
files_unpacked += 1;
|
||||
}
|
||||
|
||||
Ok(files_unpacked)
|
||||
|
Loading…
x
Reference in New Issue
Block a user