diff --git a/src/yaml.rs b/src/yaml.rs index 192fe41f..dc5ca046 100644 --- a/src/yaml.rs +++ b/src/yaml.rs @@ -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); }