mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
Fix version string.
This commit is contained in:
parent
9535dc3dfd
commit
fdc398e743
@ -137,8 +137,7 @@ Run with 'cargo -Z [FLAG] [SUBCOMMAND]'",
|
|||||||
|
|
||||||
pub fn get_version_string(is_verbose: bool) -> String {
|
pub fn get_version_string(is_verbose: bool) -> String {
|
||||||
let version = cargo::version();
|
let version = cargo::version();
|
||||||
let mut version_string = version.to_string();
|
let mut version_string = format!("cargo {}\n", version);
|
||||||
version_string.push('\n');
|
|
||||||
if is_verbose {
|
if is_verbose {
|
||||||
version_string.push_str(&format!(
|
version_string.push_str(&format!(
|
||||||
"release: {}.{}.{}\n",
|
"release: {}.{}.{}\n",
|
||||||
|
@ -7,11 +7,11 @@ fn simple() {
|
|||||||
let p = project().build();
|
let p = project().build();
|
||||||
|
|
||||||
p.cargo("version")
|
p.cargo("version")
|
||||||
.with_stdout(&format!("{}\n", cargo::version()))
|
.with_stdout(&format!("cargo {}\n", cargo::version()))
|
||||||
.run();
|
.run();
|
||||||
|
|
||||||
p.cargo("--version")
|
p.cargo("--version")
|
||||||
.with_stdout(&format!("{}\n", cargo::version()))
|
.with_stdout(&format!("cargo {}\n", cargo::version()))
|
||||||
.run();
|
.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user