From 75142f14b90dedcecca3c133c6978c0dc9177e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Tue, 2 Nov 2021 18:27:46 -0300 Subject: [PATCH] Fix short flag for the --dir flag --- src/opts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opts.rs b/src/opts.rs index f8891e7..93287da 100644 --- a/src/opts.rs +++ b/src/opts.rs @@ -51,7 +51,7 @@ pub enum Subcommand { files: Vec, /// Choose to files in a directory other than the current - #[clap(short, long = "dir", value_hint = ValueHint::DirPath)] + #[clap(short = 'd', long = "dir", value_hint = ValueHint::DirPath)] output_dir: Option, }, /// List contents. Alias: l