added exclude condition to .git folder #524

This commit is contained in:
DustInDark
2022-05-19 20:57:57 +09:00
parent b47561a79c
commit a973b5b0f6

View File

@@ -155,7 +155,9 @@ impl ParseYaml {
}
// ignore if yml file in .git folder.
if path.to_str().unwrap().contains("/.git/") {
if path.to_str().unwrap().contains("/.git/")
|| path.to_str().unwrap().contains("\\.git\\")
{
return io::Result::Ok(ret);
}