summaryrefslogtreecommitdiffstats
path: root/src/decompressor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/decompressor.rs')
-rw-r--r--src/decompressor.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/decompressor.rs b/src/decompressor.rs
index 235849b7..d25c2f56 100644
--- a/src/decompressor.rs
+++ b/src/decompressor.rs
@@ -92,10 +92,6 @@ impl DecompressionReader {
/// If there is any error in spawning the decompression command, then
/// return `None`, after outputting any necessary debug or error messages.
pub fn from_path(path: &Path) -> Option<DecompressionReader> {
- if is_tar_archive(path) {
- debug!("{}: skipping tar archive", path.display());
- return None;
- }
let extension = match path.extension().and_then(OsStr::to_str) {
Some(extension) => extension,
None => {