From deaa4b793bce254b641976a12665d442954bbf96 Mon Sep 17 00:00:00 2001 From: Jeremiah Peschka Date: Tue, 24 May 2016 12:03:38 -0700 Subject: [PATCH] Adding TOOLCHAIN_HELP to rustup help install This should fix https://github.com/rust-lang-nursery/rustup.rs/issues/483 --- src/rustup-cli/rustup_mode.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rustup-cli/rustup_mode.rs b/src/rustup-cli/rustup_mode.rs index fb4a104040..6093260ce2 100644 --- a/src/rustup-cli/rustup_mode.rs +++ b/src/rustup-cli/rustup_mode.rs @@ -113,6 +113,7 @@ pub fn cli() -> App<'static, 'static> { .after_help(SHOW_HELP)) .subcommand(SubCommand::with_name("install") .about("Update Rust toolchains") + .after_help(TOOLCHAIN_HELP) .setting(AppSettings::Hidden) // synonym for 'toolchain install' .arg(Arg::with_name("toolchain") .required(true)))