Update to code to Rust 1.67
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -24,8 +24,8 @@ pub fn apply_env_vars(val: &str) -> String {
|
||||
let value = match std::env::var(varname) {
|
||||
Ok(v) => v,
|
||||
Err(e) => {
|
||||
log::error!("Failed to find environment variable {}!", varname);
|
||||
eprintln!("Failed to find environment variable! {:?}", e);
|
||||
log::error!("Failed to find environment variable {varname}!");
|
||||
eprintln!("Failed to find environment variable! {e:?}");
|
||||
std::process::exit(2);
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user