Merge pull request #2386 from acmcarther/master
Make rustfmt-bin's CARGO_PKG_VERSION envvar optional
This commit is contained in:
commit
f925c581fe
@ -387,7 +387,7 @@ fn print_usage_to_stdout(opts: &Options, reason: &str) {
|
|||||||
fn print_version() {
|
fn print_version() {
|
||||||
println!(
|
println!(
|
||||||
"{}-nightly{}",
|
"{}-nightly{}",
|
||||||
env!("CARGO_PKG_VERSION"),
|
option_env!("CARGO_PKG_VERSION").unwrap_or("unknown"),
|
||||||
include_str!(concat!(env!("OUT_DIR"), "/commit-info.txt"))
|
include_str!(concat!(env!("OUT_DIR"), "/commit-info.txt"))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user