From 03373c6bf250fdea000665b1af7c87e199ebb11a Mon Sep 17 00:00:00 2001 From: Austin Hartzheim Date: Sat, 11 Jun 2016 23:08:48 +0000 Subject: [PATCH] Fix azerupi/mdBook#133 by adding a link to the GitHub repo at the end of the --help output. --- src/bin/mdbook.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/mdbook.rs b/src/bin/mdbook.rs index ea6f410e..f7bee853 100644 --- a/src/bin/mdbook.rs +++ b/src/bin/mdbook.rs @@ -45,7 +45,7 @@ fn main() { // Get the version from our Cargo.toml using clap's crate_version!() macro .version(&*format!("v{}", crate_version!())) .setting(AppSettings::SubcommandRequired) - .after_help("For more information about a specific command, try `mdbook --help`") + .after_help("For more information about a specific command, try `mdbook --help`\nSource code for mdbook available at: https://github.com/azerupi/mdBook") .subcommand(SubCommand::with_name("init") .about("Create boilerplate structure and files in the directory") // the {n} denotes a newline which will properly aligned in all help messages