- match remove_dir_all(&html_destination) {
- _ => {}
- };
- match remove_dir_all(&gemini_destination) {
- _ => {}
- };
-
- create_dir_all(&html_destination)
- .expect("Could not create HTML directory.");
- create_dir_all(&gemini_destination)
- .expect("Could not create Gemini directory.");
+ let _ = remove_dir_all(&html_destination);
+ let _ = remove_dir_all(&gemini_destination);
+
+ create_dir_all(&html_destination).expect("Could not create HTML directory.");
+ create_dir_all(&gemini_destination).expect("Could not create Gemini directory.");