Skip to content

Commit f588603

Browse files
committed
Add rustfmt to the tools list
1 parent ab75525 commit f588603

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rustup-cli/self_update.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,13 +184,13 @@ Studio 2013 and during install select the "C++ tools":
184184
185185
_Install the C++ build tools before proceeding_.
186186
187-
If you will be targetting the GNU ABI or otherwise know what you are
187+
If you will be targeting the GNU ABI or otherwise know what you are
188188
doing then it is fine to continue installation without the build
189189
tools, but otherwise, install the C++ build tools before proceeding.
190190
"#;
191191

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

195195
static UPDATE_ROOT: &'static str
196196
= "https://static.rust-lang.org/rustup";

src/rustup-win-installer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub const LOGMSG_STANDARD: i32 = 2;
1616

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

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

0 commit comments

Comments
 (0)