From e06611f46f714a8476977b71726d63fdbc6e2f5f Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Tue, 17 Oct 2017 11:47:30 +0200 Subject: [PATCH] Forgot to let base-url take a value >_> --- src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli.rs b/src/cli.rs index 356eb01..e42fe75 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -26,6 +26,7 @@ pub fn build_cli() -> App<'static, 'static> { Arg::with_name("base_url") .short("u") .long("base-url") + .takes_value(true) .help("Force the base URL to be that value (default to the one in config.toml)"), ]), SubCommand::with_name("serve")