ignore non-md files
This commit is contained in:
parent
07daad708b
commit
839fd164aa
1 changed files with 3 additions and 1 deletions
|
@ -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(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue