Skip to content

Commit

Permalink
Add rustfmt to the tools list
Browse files Browse the repository at this point in the history
  • Loading branch information
nrc committed Nov 21, 2017
1 parent ab75525 commit f588603
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/rustup-cli/self_update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,13 @@ Studio 2013 and during install select the "C++ tools":
_Install the C++ build tools before proceeding_.
If you will be targetting the GNU ABI or otherwise know what you are
If you will be targeting the GNU ABI or otherwise know what you are
doing then it is fine to continue installation without the build
tools, but otherwise, install the C++ build tools before proceeding.
"#;

static TOOLS: &'static [&'static str]
= &["rustc", "rustdoc", "cargo", "rust-lldb", "rust-gdb", "rls"];
= &["rustc", "rustdoc", "cargo", "rust-lldb", "rust-gdb", "rls", "rustfmt"];

static UPDATE_ROOT: &'static str
= "https://static.rust-lang.org/rustup";
Expand Down
2 changes: 1 addition & 1 deletion src/rustup-win-installer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub const LOGMSG_STANDARD: i32 = 2;

// TODO: share this with self_update.rs
static TOOLS: &'static [&'static str]
= &["rustc", "rustdoc", "cargo", "rust-lldb", "rust-gdb", "rls"];
= &["rustc", "rustdoc", "cargo", "rust-lldb", "rust-gdb", "rls", "rustfmt"];

#[no_mangle]
/// This is be run as a `deferred` action after `InstallFiles` on install and upgrade
Expand Down

0 comments on commit f588603

Please sign in to comment.