Specify default output directory (#1464)

This commit is contained in:
Avinash Sonawane 2021-05-21 15:43:41 +00:00 committed by GitHub
parent 22c29fe936
commit 4140ab7207
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")