1 2 3 4 5 6 7 8 9 10
//! Build script to install git hooks via sloughi use sloughi::Sloughi; fn main() { let _ = Sloughi::new() .custom_path(".githooks") .ignore_env("CI") .ignore_env("GITHUB_ACTIONS") .install(); }