diff options
author | nathom | 2021-06-02 00:29:37 +0000 |
---|---|---|
committer | GitHub | 2021-06-02 00:29:37 +0000 |
commit | b1ce969d80fa54b671b6a063315bd08f323b6525 (patch) | |
tree | 4d53033014529934381c2de70cd54f47ff1b668a | |
parent | 01bf36344642965d056d550645f5dd9882ac7bdc (diff) |
Add .DS_Store to ignored directories
-rw-r--r-- | helix-syntax/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-syntax/build.rs b/helix-syntax/build.rs index 70d71f92..f50c48d1 100644 --- a/helix-syntax/build.rs +++ b/helix-syntax/build.rs @@ -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; |