Minor tweaks to output

This commit is contained in:
Dave Hrycyszyn
2024-06-06 16:03:36 +01:00
parent c05cc7b15c
commit 4c586ec22e
3 changed files with 3 additions and 2 deletions

View File

@@ -14,7 +14,6 @@ pub(crate) fn setup() -> String {
/// Writes a PEM-encoded string to a file at key_path.
pub(crate) fn write(key_path: PathBuf, pem: String) -> Result<(), std::io::Error> {
println!("Writing key to: {:?}", key_path);
let mut file = File::create(key_path)?;
file.write(pem.to_string().as_bytes())?;
Ok(())