review changes

This commit is contained in:
Nick Cameron
2017-11-13 10:46:46 +13:00
parent 63d854acf2
commit 97d21e29df
2 changed files with 1 additions and 5 deletions
+1 -1
View File
@@ -1161,7 +1161,7 @@ fn run(self, builder: &Builder) -> Option<PathBuf> {
// Prepare the image directory
// We expect RLS to build, because we've exited this step above if tool
// state for RLS isn't testing.
let rustfmt = builder.ensure(tool::Rls {
let rustfmt = builder.ensure(tool::Rustfmt {
compiler: builder.compiler(stage, build.build),
target
}).expect("Rustfmt to build: toolstate is testing");
-4
View File
@@ -280,10 +280,6 @@ fn build_manifest(&mut self) -> Manifest {
if rls_present {
manifest.renames.insert("rls".to_owned(), Rename { to: "rls-preview".to_owned() });
}
if rustfmt_present {
manifest.renames.insert("rustfmt".to_owned(),
Rename { to: "rustfmt-preview".to_owned() });
}
let mut pkg = Package {
version: self.cached_version("rust")