diff options
Diffstat (limited to 'helix-loader/src/main.rs')
-rw-r--r-- | helix-loader/src/main.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/helix-loader/src/main.rs b/helix-loader/src/main.rs new file mode 100644 index 00000000..c1ce45ff --- /dev/null +++ b/helix-loader/src/main.rs @@ -0,0 +1,9 @@ +use anyhow::Result; +use helix_loader::grammar::fetch_grammars; + +// This binary is used in the Release CI as an optimization to cut down on +// compilation time. This is not meant to be run manually. + +fn main() -> Result<()> { + fetch_grammars() +} |