diff --git a/src/lib.rs b/src/lib.rs index 8421899..0035b1f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,6 +19,7 @@ impl Os { match name.to_lowercase().as_ref() { "archlinux" | "arch linux" => Some(Os::ArchLinux), "ubuntu" => Some(Os::Ubuntu), + "debian" => Some(Os::Debian), _ => None, } }