mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
Resolve uninlined_format_args pedantic clippy lint in build script
warning: variables can be used directly in the `format!` string --> build.rs:140:9 | 140 | / eprintln!( 141 | | "Environment variable ${} is not set during execution of build script", 142 | | key, 143 | | ); | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::uninlined_format_args)]`
This commit is contained in:
parent
0e2bef9ff1
commit
8fb92ff3f0
1 changed files with 1 additions and 4 deletions
5
build.rs
5
build.rs
|
@ -137,10 +137,7 @@ fn compile_probe(rustc_bootstrap: bool) -> bool {
|
|||
|
||||
fn cargo_env_var(key: &str) -> OsString {
|
||||
env::var_os(key).unwrap_or_else(|| {
|
||||
eprintln!(
|
||||
"Environment variable ${} is not set during execution of build script",
|
||||
key,
|
||||
);
|
||||
eprintln!("Environment variable ${key} is not set during execution of build script");
|
||||
process::exit(1);
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue