drop short flags

This commit is contained in:
josh rotenberg 2021-07-04 08:15:51 -07:00
parent e5e10c681a
commit 86d390032b
1 changed files with 0 additions and 2 deletions

View File

@ -20,7 +20,6 @@ pub fn make_subcommand<'a, 'b>() -> App<'a, 'b> {
.arg_from_usage("--force 'Skips confirmation prompts'") .arg_from_usage("--force 'Skips confirmation prompts'")
.arg( .arg(
Arg::with_name("title") Arg::with_name("title")
.short("t")
.long("title") .long("title")
.takes_value(true) .takes_value(true)
.help("Sets the book title") .help("Sets the book title")
@ -28,7 +27,6 @@ pub fn make_subcommand<'a, 'b>() -> App<'a, 'b> {
) )
.arg( .arg(
Arg::with_name("gitignore") Arg::with_name("gitignore")
.short("g")
.long("gitignore") .long("gitignore")
.help("Creates a .gitignore"), .help("Creates a .gitignore"),
) )