From d8e665bc0d9b3ef7904ccdfddc033e91b990c79a Mon Sep 17 00:00:00 2001 From: Ergin Altintas Date: Sat, 22 May 2021 10:51:57 +0300 Subject: [PATCH] support more OS'es --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d8708bb3..2292baa7 100755 --- a/install.sh +++ b/install.sh @@ -118,7 +118,7 @@ get_distribution() { lsb_dist="" # Every system that we officially support has /etc/os-release if [ -r /etc/os-release ]; then - lsb_dist="$(. /etc/os-release && echo "$ID")" + lsb_dist="$(. /etc/os-release && echo "$ID_LIKE")" fi # Returning an empty string here should be alright since the # case statements don't act unless you provide an actual value