Merge pull request #1330 from seii/fix/raspbian-support
Add Raspbian support to install.sh
This commit is contained in:
commit
83d6e488e4
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ if [ $EUID != 0 ]; then
|
||||||
echo "Please run as root"
|
echo "Please run as root"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
if [ $OS_TYPE != "ubuntu" ] && [ $OS_TYPE != "debian" ]; then
|
if [ $OS_TYPE != "ubuntu" ] && [ $OS_TYPE != "debian" ] && [ $OS_TYPE != "raspbian" ]; then
|
||||||
echo "This script only supports Ubuntu and Debian for now."
|
echo "This script only supports Ubuntu and Debian for now."
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue