From fceec61a2c5cc323b4f7c1a8b4ffbe01b458c781 Mon Sep 17 00:00:00 2001 From: James Booth Date: Tue, 21 Jul 2015 00:39:53 +0100 Subject: [PATCH] Changed os check ordering in install-all.sh --- install-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-all.sh b/install-all.sh index d98819c7..f302de4d 100755 --- a/install-all.sh +++ b/install-all.sh @@ -167,10 +167,10 @@ if [ "${OS}" = "Linux" ]; then DIST=fedora elif [ -f /etc/debian_version ]; then DIST=debian - elif [ -f /etc/os-release ]; then - DIST=opensuse elif [ -f /etc/centos-release ]; then DIST=centos + elif [ -f /etc/os-release ]; then + DIST=opensuse fi else echo $OS | grep -i cygwin