From 4140ab7207c4d0e78423cda5c2ea1fb461c2ea3f Mon Sep 17 00:00:00 2001 From: Avinash Sonawane Date: Fri, 21 May 2021 15:43:41 +0000 Subject: [PATCH] Specify default output directory (#1464) --- src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index ceef7be3..5708da45 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -46,7 +46,7 @@ pub fn build_cli() -> App<'static, 'static> { .short("o") .long("output-dir") .takes_value(true) - .help("Outputs the generated site in the given path"), + .help("Outputs the generated site in the given path (by default 'public' dir in project root)"), Arg::with_name("drafts") .long("drafts") .takes_value(false) @@ -69,7 +69,7 @@ pub fn build_cli() -> App<'static, 'static> { .short("o") .long("output-dir") .takes_value(true) - .help("Outputs the generated site in the given path"), + .help("Outputs the generated site in the given path (by default 'public' dir in project root)"), Arg::with_name("base_url") .short("u") .long("base-url")