mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Merge #2132
2132: echo cargo version during install r=matklad a=matklad Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
ce3173469c
1 changed files with 1 additions and 0 deletions
|
@ -229,6 +229,7 @@ fn install_server(opts: ServerOpt) -> Result<()> {
|
||||||
let mut old_rust = false;
|
let mut old_rust = false;
|
||||||
if let Ok(output) = run_with_output("cargo --version", ".") {
|
if let Ok(output) = run_with_output("cargo --version", ".") {
|
||||||
if let Ok(stdout) = String::from_utf8(output.stdout) {
|
if let Ok(stdout) = String::from_utf8(output.stdout) {
|
||||||
|
println!("{}", stdout);
|
||||||
if !check_version(&stdout, REQUIRED_RUST_VERSION) {
|
if !check_version(&stdout, REQUIRED_RUST_VERSION) {
|
||||||
old_rust = true;
|
old_rust = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue