mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-06 19:45:29 +00:00
replace code that refers to .lz isntead of .lzma (#344)
This commit is contained in:
parent
38e19536af
commit
46731c0798
@ -91,7 +91,7 @@ impl fmt::Display for CompressionFormat {
|
||||
Bzip => ".bz",
|
||||
Zstd => ".zst",
|
||||
Lz4 => ".lz4",
|
||||
Lzma => ".lz",
|
||||
Lzma => ".lzma",
|
||||
Snappy => ".sz",
|
||||
Tar => ".tar",
|
||||
Zip => ".zip",
|
||||
|
@ -5,7 +5,7 @@ use clap::{Parser, ValueHint};
|
||||
// Ouch command line options (docstrings below are part of --help)
|
||||
/// A command-line utility for easily compressing and decompressing files and directories.
|
||||
///
|
||||
/// Supported formats: tar, zip, bz/bz2, gz, lz4, xz/lz/lzma, zst.
|
||||
/// Supported formats: tar, zip, bz/bz2, gz, lz4, xz/lzma, zst.
|
||||
///
|
||||
/// Repository: https://github.com/ouch-org/ouch
|
||||
#[derive(Parser, Debug)]
|
||||
|
Loading…
x
Reference in New Issue
Block a user