Fix issue with detection logic of Centos in install.sh

Signed-off-by: evalle <shmarnev@gmail.com>
This commit is contained in:
evalle
2015-07-11 19:28:21 +02:00
parent 9264d38424
commit 33039aa129

View File

@@ -109,6 +109,9 @@ do_install() {
if [ -z "$lsb_dist" ] && [ -r /etc/fedora-release ]; then
lsb_dist='fedora'
fi
if [ -z "$lsb_dist" ] && [ -r /etc/centos-release ]; then
lsb_dist='centos'
fi
if [ -z "$lsb_dist" ] && [ -r /etc/os-release ]; then
lsb_dist="$(. /etc/os-release && echo "$ID")"
fi