X-Git-Url: https://git.r.bdr.sh/rbdr/page/blobdiff_plain/5732d284ebc2cc2cbde0f050443b8f137dbf585b..refs/heads/rbdr-add-tests:/src/main.rs?ds=inline diff --git a/src/main.rs b/src/main.rs index cedd557..6c7b8a9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,9 +15,9 @@ fn main() -> Result<()> { let source = current_dir()?; let source_name = source.file_name().unwrap().to_string_lossy(); let parent = source.parent().unwrap(); - let gemini_destination_name = format!("{}_gemini", source_name); + let gemini_destination_name = format!("{source_name}_gemini"); let gemini_destination = parent.join(gemini_destination_name); - let html_destination_name = format!("{}_html", source_name); + let html_destination_name = format!("{source_name}_html"); let html_destination = parent.join(html_destination_name); // Step 1. Identify the files @@ -26,9 +26,9 @@ fn main() -> Result<()> { // Step 2. Load the layout let mut file_handler = FileHandler::default(); match file_handler.get_layout_or_panic(&files) { - Ok(_) => {} + Ok(()) => {} Err(error) => { - eprintln!("{}", error); + eprintln!("{error}"); exit(1); } }