1 2 3 4 5 6 7 8 9 10 11
use miette::Result; fn main() -> Result<()> { // Match the primary CLI's standard Unix pipe behavior. #[cfg(unix)] unsafe { libc::signal(libc::SIGPIPE, libc::SIG_DFL); } secretspec::integration::git::main() }