Make install_ubuntu.sh work for Debian as well

This commit is contained in:
2013-10-20 22:37:58 +02:00
parent 6324669748
commit ff7d71fb87

View File

@@ -9,7 +9,7 @@ GIT='git'
LTS="Ubuntu 10.04" LTS="Ubuntu 10.04"
ISSUE=`cat /etc/issue` ISSUE=`cat /etc/issue`
if [[ $ISSUE != Ubuntu* ]] if [[ ($ISSUE != Ubuntu*) && ($ISSUE != Debian*) ]];
then then
echo "This script is intended for use on Ubuntu, but this system appears"; echo "This script is intended for use on Ubuntu, but this system appears";
echo "to be something else. Your results may vary."; echo "to be something else. Your results may vary.";