diff options
author | Blaž Hrastnik | 2021-06-02 00:37:09 +0000 |
---|---|---|
committer | GitHub | 2021-06-02 00:37:09 +0000 |
commit | 7967d312c0a8ad94942d154485b62b0bbce78611 (patch) | |
tree | bb9a73c19cf0ec9b76b5cf3f5acefb3890a0902f /helix-syntax | |
parent | db48d223847c286ea5816f191540a78412589e7b (diff) | |
parent | b1ce969d80fa54b671b6a063315bd08f323b6525 (diff) |
Merge pull request #38 from nathom/master
Add .DS_Store to ignored directories
Diffstat (limited to 'helix-syntax')
-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; |