Add .DS_Store to ignored directories

pull/38/head
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
1 changed files with 1 additions and 1 deletions

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;