mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Don't discard flycheck error messages
This commit is contained in:
parent
82abe04931
commit
3fcbcf4a0e
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ impl CargoActor {
|
||||||
output.status
|
output.status
|
||||||
)))
|
)))
|
||||||
}
|
}
|
||||||
Err(e) => Err(e),
|
Err(e) => Err(io::Error::new(e.kind(), format!("{:?}: {}", e, error))),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue