mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Fix printing of prettyplease 0.2.x version number
This commit is contained in:
parent
94891bb6be
commit
f1d6cf52c8
1 changed files with 1 additions and 1 deletions
2
build.rs
2
build.rs
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue