aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/reload.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-09-20 20:25:09 +0100
committerGitHub <[email protected]>2020-09-20 20:25:09 +0100
commite70cf706bb7c6c07e8c33b537ad24e5333aa5e75 (patch)
tree99290eb9584d766851b6a07f472ca6256bdb9ee9 /crates/rust-analyzer/src/reload.rs
parent59f9fc4cd10b22b887ae42f12cc886793f0b061b (diff)
parent38f1ce633d78289c71e0f860d82fda5a62db8f7b (diff)
Merge #6018
6018: Correct project_root path for ProjectJson. r=jonas-schievink a=woody77 It was already the folder containing the rust-project.json file, not the file itself. This also removes the Option-ness of it, since it's now an infallible operation to set the member value. Co-authored-by: Aaron Wood <[email protected]>
Diffstat (limited to 'crates/rust-analyzer/src/reload.rs')
-rw-r--r--crates/rust-analyzer/src/reload.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/reload.rs b/crates/rust-analyzer/src/reload.rs
index ae404331d..b070087a4 100644
--- a/crates/rust-analyzer/src/reload.rs
+++ b/crates/rust-analyzer/src/reload.rs
@@ -252,7 +252,7 @@ impl GlobalState {
252 // Enable flychecks for json projects if a custom flycheck command was supplied 252 // Enable flychecks for json projects if a custom flycheck command was supplied
253 // in the workspace configuration. 253 // in the workspace configuration.
254 match config { 254 match config {
255 FlycheckConfig::CustomCommand { .. } => project.path(), 255 FlycheckConfig::CustomCommand { .. } => Some(project.path()),
256 _ => None, 256 _ => None,
257 } 257 }
258 } 258 }