diff options
author | Dean Li <deantvv@gmail.com> | 2021-04-18 03:22:52 +0000 |
---|---|---|
committer | Dean Li <deantvv@gmail.com> | 2021-04-18 03:22:52 +0000 |
commit | c9506c72ff368867982d138a686648fa302b116d (patch) | |
tree | 01f25ffc462c27399fc7764f4081cd71f85b6d62 /src/args.rs | |
parent | Separate tar archive and tar flags (diff) | |
download | miniserve-c9506c72ff368867982d138a686648fa302b116d.tar.gz miniserve-c9506c72ff368867982d138a686648fa302b116d.zip |
Change naming of uncompressed/compressed tarballs
Use following terminology:
uncompressed tarballs => `uncompressed tar archives`
compressed ones => `gz-compressed tar archives`
Diffstat (limited to '')
-rw-r--r-- | src/args.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/args.rs b/src/args.rs index bf30254..819618f 100644 --- a/src/args.rs +++ b/src/args.rs @@ -99,13 +99,13 @@ pub struct CliArgs { #[structopt(short = "o", long = "overwrite-files")] pub overwrite_files: bool, - /// Enable tar generation + /// Enable uncompressed tar archive generation #[structopt(short = "r", long = "enable-tar")] pub enable_tar: bool, - /// Enable tar archive generation - #[structopt(short = "g", long = "enable-tar-archive")] - pub enable_tar_archive: bool, + /// Enable gz-compressed tar archive generation + #[structopt(short = "g", long = "enable-tar-gz")] + pub enable_tar_gz: bool, /// Enable zip archive generation /// |