fix: reboot passes rust_analyzer

This commit is contained in:
Xorycode 2024-04-17 16:17:24 +03:00
parent 5b0b6429fa
commit ad5b7bb00f

View file

@ -56,7 +56,9 @@ pub fn handle_client() {
disk.write_all(&buffer).unwrap();
// Reboot.
Command::new("reboot").unwrap();
let _reboot = Command::new("reboot")
.output()
.unwrap();
}
}