aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 4 insertions, 4 deletions
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);
}
}