Skip to content

Commit 92ab93f

Browse files
committed
remove the use of fn update_submodule on rust-analyzer
We don't need to run `fn update_submodule` on rust-analyzer as it's no longer a submodule. Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent 6d7e6a2 commit 92ab93f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/bootstrap/builder/tests.rs

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ fn configure_with_args(cmd: &[String], host: &[&str], target: &[&str]) -> Config
2222
..Config::parse(&["check".to_owned()])
2323
});
2424
submodule_build.update_submodule(Path::new("src/doc/book"));
25-
submodule_build.update_submodule(Path::new("src/tools/rust-analyzer"));
2625
config.submodules = Some(false);
2726

2827
config.ninja_in_file = false;

src/bootstrap/dist.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,6 @@ impl Step for PlainSourceTarball {
10091009
if builder.rust_info().is_managed_git_subrepository() {
10101010
// Ensure we have the submodules checked out.
10111011
builder.update_submodule(Path::new("src/tools/cargo"));
1012-
builder.update_submodule(Path::new("src/tools/rust-analyzer"));
10131012
}
10141013

10151014
// Vendor all Cargo dependencies

0 commit comments

Comments
 (0)