Add .DS_Store to ignored directories

This commit is contained in:
nathom 2021-06-01 17:29:37 -07:00 committed by GitHub
parent 01bf363446
commit b1ce969d80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,7 +107,7 @@ fn build_dir(dir: &str, language: &str) {
}
fn main() {
let ignore = vec!["tree-sitter-typescript".to_string()];
let ignore = vec!["tree-sitter-typescript".to_string(), ".DS_Store".to_string()];
let dirs = collect_tree_sitter_dirs(&ignore);
let mut n_jobs = 0;