mirror of https://github.com/bobwen-dev/hunter
fixed crash on fbsd+zfs. have fun ;)
This commit is contained in:
parent
caf242986c
commit
ddcac56115
|
@ -66,10 +66,9 @@ pub trait FsExt {
|
|||
impl FsExt for Filesystem {
|
||||
fn get_dev(&self) -> String {
|
||||
let path = PathBuf::from(&self.fs_mounted_from);
|
||||
let dev = path.components().last().unwrap();
|
||||
let dev = match dev {
|
||||
Component::Normal(dev) => dev.to_string_lossy().to_string(),
|
||||
_ => "wtf".to_string()
|
||||
let dev = match path.components().last() {
|
||||
Some(Component::Normal(dev)) => dev.to_string_lossy().to_string(),
|
||||
_ => "FS".to_string()
|
||||
};
|
||||
dev
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue