Skip to content

Commit c763f1d

Browse files
committed
fix(cli): Clean up short/long flags
1 parent 2f18854 commit c763f1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ use proc_exit::WithCodeResultExt;
77
struct Args {
88
#[arg(short, long, group = "mode")]
99
input: Option<std::path::PathBuf>,
10-
#[arg(short)]
10+
#[arg(short, long)]
1111
output: Option<std::path::PathBuf>,
1212
/// Sleep between commits
1313
#[arg(long)]
1414
sleep: Option<humantime::Duration>,
1515

16-
#[arg(short, group = "mode")]
16+
#[arg(long, group = "mode")]
1717
schema: Option<std::path::PathBuf>,
1818
}
1919

0 commit comments

Comments
 (0)