mirror of
https://github.com/sharkdp/bat.git
synced 2025-09-02 03:12:25 +01:00
Reorganise build script into modules
This commit is contained in:
committed by
Martin Nordholts
parent
f3a5e9a73c
commit
79a03b4299
10
build/main.rs
Normal file
10
build/main.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
#[cfg(feature = "application")]
|
||||
mod application;
|
||||
mod util;
|
||||
|
||||
fn main() -> anyhow::Result<()> {
|
||||
#[cfg(feature = "application")]
|
||||
application::gen_man_and_comp()?;
|
||||
|
||||
Ok(())
|
||||
}
|
Reference in New Issue
Block a user