about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Esposito <matt@matthew.science>2023-06-04 18:06:34 -0400
committerMatthew Esposito <matt@matthew.science>2023-06-04 18:06:34 -0400
commit1835d0333be220fc23d8b290298838dff5549cad (patch)
tree1bbfa443b0f16419d643da7077c38e4bd7e9d61b
parentdc25fbe9844f4c8bddc316685d270a49d7b159b9 (diff)
downloadrust-1835d0333be220fc23d8b290298838dff5549cad.tar.gz
rust-1835d0333be220fc23d8b290298838dff5549cad.zip
Make RustAnalyzer check off by default
-rw-r--r--src/bootstrap/check.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs
index f5a93854bf2..1a0f0047812 100644
--- a/src/bootstrap/check.rs
+++ b/src/bootstrap/check.rs
@@ -347,7 +347,7 @@ pub struct RustAnalyzer {
 impl Step for RustAnalyzer {
     type Output = ();
     const ONLY_HOSTS: bool = true;
-    const DEFAULT: bool = true;
+    const DEFAULT: bool = false;
 
     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
         run.path("src/tools/rust-analyzer")