From 395244fbc15d9fc6e362db8b623543f70ffd0264 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Fri, 25 Aug 2023 22:39:48 -0700 Subject: [PATCH] testing --- status_cloud/src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/status_cloud/src/main.rs b/status_cloud/src/main.rs index cb79bc7..d8fe1da 100644 --- a/status_cloud/src/main.rs +++ b/status_cloud/src/main.rs @@ -60,6 +60,13 @@ fn main() -> Result<(), Box> { } } + match Command::new("hddtemp").output() { + Ok(val) => val, + Err(e) => { + println!("Error running hddtemp: {}", e.to_string()); + return Ok(()); + } + }; { let mut drive_temps: Vec = vec![];