add comment
This commit is contained in:
parent
40c034ed3f
commit
7082689866
|
@ -87,6 +87,8 @@ fn find_gitignore(book_root: &Path) -> Option<PathBuf> {
|
|||
.find(|p| p.exists())
|
||||
}
|
||||
|
||||
// Using `canonicalize` can fail on Windows sometimes, might be a potential risk.
|
||||
// see ([https://github.com/rust-lang/mdBook/pull/2229#discussion_r1408665981).
|
||||
fn filter_ignored_files(ignore: Gitignore, paths: &[PathBuf]) -> Vec<PathBuf> {
|
||||
let ignore_root = ignore
|
||||
.path()
|
||||
|
|
Loading…
Reference in New Issue