Main: Fix format strings not being format strings

Damn you rust-analyzer for highlighting these things when
not using format! or an equivalent.
This commit is contained in:
networkException 2024-09-12 02:17:43 +02:00
parent 6f2d410e5e
commit 6d0b738697
Signed by: networkException
GPG key ID: E3877443AE684391

View file

@ -14,7 +14,8 @@ fn main() -> Result<()> {
let path_to_contents = env::args().nth(1).expect("The first argument to be present.");
let output_path = env::args().nth(2).expect("The second argument to be present.");
let contents = fs::read_to_string(path_to_contents).expect("To be able to read the contents file at the path '{path_to_contents}' passed as the first argument.");
let contents = fs::read_to_string(&path_to_contents)
.expect(format!("To be able to read the contents file at the path '{path_to_contents}' passed as the first argument.").as_str());
let secret_inputs = env::vars().filter(|(key, _)| key.starts_with("SECRET_"));
@ -26,7 +27,7 @@ fn main() -> Result<()> {
};
let secret_value = fs::read_to_string(path_to_secret)
.expect("To be able to read in secret '{secret_key}' from path '{path_to_secret}'");
.expect(format!("To be able to read in secret '{secret_key}' from path '{path_to_secret}'").as_str());
println!("Registering secret '{secret_key}' from '{path_to_secret}'.");
@ -73,7 +74,8 @@ fn main() -> Result<()> {
let output = handlebars.render_template(contents.as_str(), &Value::Object(data_map))?;
fs::write(output_path, output).expect("To be able to write to {output_path}");
fs::write(&output_path, output)
.expect(format!("To be able to write to {output_path}").as_str());
Ok(())
}