sh.tforgione.fr/src/main.rs

7 lines
148 B
Rust
Raw Normal View History

2020-11-22 17:25:11 +00:00
fn main() {
2020-11-22 17:58:20 +00:00
if let Err(e) = tforgione_installer::main() {
eprintln!("installer crashed: {}", e);
std::process::exit(1);
}
2020-11-22 17:25:11 +00:00
}