ignore non-md files

This commit is contained in:
Crispy 2024-04-26 23:23:33 +02:00
parent 07daad708b
commit 839fd164aa

View file

@ -53,7 +53,9 @@ fn build_file(path: &Path) -> Result {
if path.extension().and_then(OsStr::to_str) == Some("md") { if path.extension().and_then(OsStr::to_str) == Some("md") {
convert_file(path) convert_file(path)
} else { } else {
todo!("move file") println!("file ignored: {}", path.display());
// TODO copy non dotfiles
Ok(())
} }
} }