diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e71b047d..da6276e7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,22 @@ +v 1.2.2 + - Check/Install bc command + - Fixed EasyEngine Update Issue #134 #148 + - Automatic set WordPress Permalink Structure by @UmeshSingla + - Fixed @WP-CLI version to 0.14.1 + - Correct Typo Mistake, Thanks to @sdenike on pull request #155 + - Introduce ee site edit command by @Mermouy on pull request #153 + - Auto Switch the site create options + - Better way to detetct Linux Ditribution + + +v 1.2.1 + - Fixed Debian Issue #136 + + +v 1.2 + - Debian 6 and Debian 7 support added + + v 1.1.5 - Fixed WordPress multisite issue (#127). diff --git a/install.sh b/install.sh index 140bdd22..0233e06e 100644 --- a/install.sh +++ b/install.sh @@ -2,8 +2,11 @@ +# Make Variables Available For Later Use +LINUX_DISTRO=$(lsb_release -i | cut -d':' -f2 | awk '{print $1}') + # Checking Linux Distro Is Ubuntu -if [ ! -f /etc/lsb-release ] && [ ! -f /etc/debian_version ] +if [ "$LINUX_DISTRO" != "Ubuntu" ] && [ "$LINUX_DISTRO" != "Debian" ] then echo -e "\033[31mEasyEngine (ee) Is Made For Ubuntu And Debian Only As Of Now\e[0m" echo -e "\033[31mYou Are Free To Fork EasyEngine (ee): https://github.com/rtCamp/easyengine/fork\e[0m"