1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-21 18:24:14 -04:00

Changed os check ordering in install-all.sh

This commit is contained in:
James Booth 2015-07-21 00:39:53 +01:00
parent f736a248f7
commit fceec61a2c

View File

@ -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