echo cargo version during install

This commit is contained in:
Aleksey Kladov 2019-10-30 20:49:04 +03:00
parent f996b6019b
commit e529c8e3e2

View File

@ -229,6 +229,7 @@ fn install_server(opts: ServerOpt) -> Result<()> {
let mut old_rust = false;
if let Ok(output) = run_with_output("cargo --version", ".") {
if let Ok(stdout) = String::from_utf8(output.stdout) {
println!("{}", stdout);
if !check_version(&stdout, REQUIRED_RUST_VERSION) {
old_rust = true;
}