From e70950de024da7bc5cfac6986a33708d62c4536c Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Fri, 1 Jun 2018 14:54:04 +0300 Subject: [PATCH] Inform about unknown Linux distributions --- src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.rs b/src/main.rs index 4530c101..79ed88ab 100644 --- a/src/main.rs +++ b/src/main.rs @@ -184,6 +184,12 @@ fn run() -> Result<()> { } } + OSType::Unknown => { + println!( + "Could not detect your Linux distribution. Do you have lsb-release installed?" + ); + } + _ => (), }