get rid of color_eyre

Should never have added it. Annoyingly long compile times for no reason...
This commit is contained in:
raf 2025-01-26 00:52:22 +03:00
commit 592fb58474
No known key found for this signature in database
GPG key ID: EED98D11B85A2819
6 changed files with 21 additions and 128 deletions

View file

@ -1,4 +1,3 @@
use color_eyre::Result;
use nix::sys::utsname::UtsName;
use std::{
fs::File,
@ -30,6 +29,5 @@ pub fn get_os_pretty_name() -> Result<String, io::Error> {
return Ok(pretty_name.to_string());
}
}
Ok("Unknown".to_string())
}