Skip to content

Commit

Permalink
Fix single file decompression with specified output directory (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda authored Oct 14, 2021
1 parent c89c34a commit 69e5e32
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,8 @@ fn decompress_file(
reader = chain_reader_decoder(format, reader)?;
}

utils::create_dir_if_non_existent(output_folder)?;

match formats[0] {
Gzip | Bzip | Lzma | Zstd => {
reader = chain_reader_decoder(&formats[0], reader)?;
Expand All @@ -316,19 +318,15 @@ fn decompress_file(
info!("Successfully uncompressed archive in '{}'.", to_utf(output_path));
}
Tar => {
utils::create_dir_if_non_existent(output_folder)?;
let _ = crate::archive::tar::unpack_archive(reader, output_folder, flags)?;
info!("Successfully uncompressed archive in '{}'.", to_utf(output_folder));
}
Tgz => {
utils::create_dir_if_non_existent(output_folder)?;
let reader = chain_reader_decoder(&Gzip, reader)?;
let _ = crate::archive::tar::unpack_archive(reader, output_folder, flags)?;
info!("Successfully uncompressed archive in '{}'.", to_utf(output_folder));
}
Zip => {
utils::create_dir_if_non_existent(output_folder)?;

eprintln!("Compressing first into .zip.");
eprintln!("Warning: .zip archives with extra extensions have a downside.");
eprintln!(
Expand Down

0 comments on commit 69e5e32

Please sign in to comment.