diff --git a/src/main.rs b/src/main.rs index 2027512..6cdb25d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -53,7 +53,9 @@ fn build_file(path: &Path) -> Result { if path.extension().and_then(OsStr::to_str) == Some("md") { convert_file(path) } else { - todo!("move file") + println!("file ignored: {}", path.display()); + // TODO copy non dotfiles + Ok(()) } }