diff options
Diffstat (limited to 'helix-term/build.rs')
-rw-r--r-- | helix-term/build.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/build.rs b/helix-term/build.rs index 974f4b5e..74c35a3a 100644 --- a/helix-term/build.rs +++ b/helix-term/build.rs @@ -19,7 +19,8 @@ fn main() { if std::env::var("HELIX_DISABLE_AUTO_GRAMMAR_BUILD").is_err() { fetch_grammars().expect("Failed to fetch tree-sitter grammars"); - build_grammars().expect("Failed to compile tree-sitter grammars"); + build_grammars(Some(std::env::var("TARGET").unwrap())) + .expect("Failed to compile tree-sitter grammars"); } println!("cargo:rerun-if-changed=../runtime/grammars/"); |