Compare commits

..

2 commits

3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -183,7 +183,7 @@ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
[[package]]
name = "secrets-file-builder"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"anyhow",
"handlebars",

View file

@ -1,6 +1,6 @@
[package]
name = "secrets-file-builder"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["networkException <git@nwex.de>"]
license = "BSD-2-Clause"

View file

@ -73,7 +73,7 @@ fn main() -> Result<()> {
let output = handlebars.render_template(contents.as_str(), &Value::Object(data_map))?;
fs::write(output_path, output)?;
fs::write(output_path, output).expect("To be able to write to {output_path}");
Ok(())
}