aboutsummaryrefslogtreecommitdiff
path: root/helix-loader/src/main.rs
blob: c1ce45ffa7cd84ae9502ccbe1b7f9c4e50879938 (plain) (blame)
1
2
3
4
5
6
7
8
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()
}