We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9b3e06 commit 2ee3e92Copy full SHA for 2ee3e92
install.sh
@@ -2,8 +2,11 @@
2
3
4
5
+# Make Variables Available For Later Use
6
+LINUX_DISTRO=$(lsb_release -i | cut -d':' -f2 | awk '{print $1}')
7
+
8
# Checking Linux Distro Is Ubuntu
-if [ ! -f /etc/lsb-release ] && [ ! -f /etc/debian_version ]
9
+if [ "$LINUX_DISTRO" != "Ubuntu" ] && [ "$LINUX_DISTRO" != "Debian" ]
10
then
11
echo -e "\033[31mEasyEngine (ee) Is Made For Ubuntu And Debian Only As Of Now\e[0m"
12
echo -e "\033[31mYou Are Free To Fork EasyEngine (ee): https://github.com/rtCamp/easyengine/fork\e[0m"
0 commit comments