mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix
This commit is contained in:
parent
f29db8a1ae
commit
fe326df0db
1 changed files with 2 additions and 3 deletions
|
@ -325,9 +325,8 @@ impl Inner {
|
||||||
let maybe_config =
|
let maybe_config =
|
||||||
crate::config_file::discover_from(&root_path, &mut checked)?;
|
crate::config_file::discover_from(&root_path, &mut checked)?;
|
||||||
Ok(maybe_config.map(|c| {
|
Ok(maybe_config.map(|c| {
|
||||||
let s = c.specifier.clone();
|
lsp_log!(" Auto-resolved configuration file: \"{}\"", c.specifier);
|
||||||
lsp_log!(" Auto-resolved configuration file: \"{}\"", s);
|
c
|
||||||
(c, s)
|
|
||||||
}))
|
}))
|
||||||
} else {
|
} else {
|
||||||
Ok(None)
|
Ok(None)
|
||||||
|
|
Loading…
Reference in a new issue