From 989eab560eecefc0b20facfd9a07bd6b33f40716 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Sat, 29 Aug 2020 07:24:00 +0300 Subject: [PATCH] Add Garuda os_release --- src/steps/os/linux.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/steps/os/linux.rs b/src/steps/os/linux.rs index 45840d69..5865cba4 100644 --- a/src/steps/os/linux.rs +++ b/src/steps/os/linux.rs @@ -652,4 +652,9 @@ mod tests { fn test_artix() { test_template(&include_str!("os_release/artix"), Distribution::Arch); } + + #[test] + fn test_garuda() { + test_template(&include_str!("os_release/garuda"), Distribution::Arch); + } }