diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-04-26 16:18:02 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-26 16:18:02 +0000 |
| commit | 7e10df9df99adc040bf2c22580c6ade62b4823b7 (patch) | |
| tree | e34d85b1e2be27c5f832db241a551efeacfa0f5d | |
| parent | 6cd669e8809d9e19b2169d04b99f33258848b814 (diff) | |
| parent | 363cef5c0ebb064a3802fe326205686e6f0c8186 (diff) | |
Merge #8670
8670: fix: make error message in the status bar more useful r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
| -rw-r--r-- | crates/project_model/src/build_data.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/project_model/src/build_data.rs b/crates/project_model/src/build_data.rs index faca336de03..7b88dca6306 100644 --- a/crates/project_model/src/build_data.rs +++ b/crates/project_model/src/build_data.rs @@ -143,7 +143,7 @@ impl WorkspaceBuildData { cmd.env("RA_RUSTC_WRAPPER", "1"); } - cmd.args(&["check", "--workspace", "--message-format=json", "--manifest-path"]) + cmd.args(&["check", "--quiet", "--workspace", "--message-format=json", "--manifest-path"]) .arg(cargo_toml.as_ref()); // --all-targets includes tests, benches and examples in addition to the |
