mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
Avoid right-padding commands with spaces
Primarily because it needlessly breaks tests.
This commit is contained in:
parent
09cd53832c
commit
cd55e0459c
@ -79,7 +79,7 @@ Run with 'cargo -Z [FLAG] [SUBCOMMAND]'"
|
|||||||
if is_verbose {
|
if is_verbose {
|
||||||
println!(" {:<20} {}", name, path.display())
|
println!(" {:<20} {}", name, path.display())
|
||||||
} else {
|
} else {
|
||||||
println!(" {:<20}", name)
|
println!(" {}", name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user