Browse Source

Merge branch 'master' into doctor

old-stable
Mitesh Shah 11 years ago
parent
commit
155027eb19
  1. 19
      CHANGELOG.txt
  2. 5
      install.sh

19
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).

5
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"

Loading…
Cancel
Save