this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: allow `decompress` as an alias of `extract`

+5 -1
+1 -1
src/main.rs
··· 77 77 let action = { 78 78 if common_args.compress { 79 79 Action::Compress 80 - } else if common_args.extract { 80 + } else if common_args.extract || common_args.decompress { 81 81 Action::Extract 82 82 } else { 83 83 Action::Compress
+4
src/utils.rs
··· 21 21 #[arg(short, long)] 22 22 pub extract: bool, 23 23 24 + /// Decompress the input. Alias of --extract 25 + #[arg(short, long)] 26 + pub decompress: bool, 27 + 24 28 /// List of I/O. 25 29 /// This consists of all the inputs followed by the single output, with intelligent fallback to stdin/stdout. 26 30 #[arg()]