From d4db2499978a183aa3b55d09dbf5a892f4557ff1 Mon Sep 17 00:00:00 2001 From: Christopher Poenaru Date: Thu, 18 Feb 2021 16:53:40 +0000 Subject: [PATCH] add force arg long switch to CLI (#1362) --- src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli.rs b/src/cli.rs index ab1321f9..ceef7be3 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -30,6 +30,7 @@ pub fn build_cli() -> App<'static, 'static> { .help("Name of the project. Will create a new directory with that name in the current directory"), Arg::with_name("force") .short("f") + .long("force") .takes_value(false) .help("Force creation of project even if directory is non-empty") ]),