From e529c8e3e287b4f70fac0b078fe7ce45394f914c Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 30 Oct 2019 20:49:04 +0300 Subject: echo cargo version during install --- xtask/src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'xtask/src/main.rs') diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 04dca402c..d88b7ef37 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -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; } -- cgit v1.2.3