Fix printing of prettyplease 0.2.x version number

This commit is contained in:
David Tolnay 2023-03-24 20:48:05 -07:00
parent 94891bb6be
commit f1d6cf52c8
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -6,7 +6,7 @@ fn main() {
println!("cargo:rerun-if-changed=build.rs");
let mut version = env!("CARGO_PKG_VERSION").to_owned();
if let Ok(prettyplease_version) = env::var("DEP_PRETTYPLEASE01_VERSION") {
if let Ok(prettyplease_version) = env::var("DEP_PRETTYPLEASE02_VERSION") {
// TODO: Make this appear only if `--version --verbose` is used.
version.push_str(" + prettyplease ");
version.push_str(&prettyplease_version);