Skip to content

Commit 054b2aa

Browse files
committed
Merge branch 'master' of github.com:rtCamp/easyengine
2 parents aef4722 + b957caf commit 054b2aa

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

ee/core/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class EEVariables():
1212
"""Intialization of core variables"""
1313

1414
# EasyEngine version
15-
ee_version = "3.1.0"
15+
ee_version = "3.1.1"
1616

1717
# EasyEngine packages versions
1818
ee_wp_cli = "0.18.0"

install

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fi
4848
# Define variables for later use
4949
ee_branch=$1
5050
readonly ee_version_old="2.2.3"
51-
readonly ee_version_new="3.1.0"
51+
readonly ee_version_new="3.1.1"
5252
readonly ee_log_dir=/var/log/ee/
5353
readonly ee_install_log=/var/log/ee/install.log
5454
readonly ee_linux_distro=$(lsb_release -i | awk '{print $3}')
@@ -299,6 +299,12 @@ function ee_update_latest()
299299
fi
300300
fi
301301
fi
302+
303+
# Fix HHVM autostart on reboot
304+
dpkg -l | grep hhvm &>> /dev/null
305+
if [ $? -eq 0 ]; then
306+
sudo update-rc.d hhvm defaults &>> /dev/null
307+
fi
302308
}
303309

304310
# Do git intialisation

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
os.system("git config --global user.email {0}".format(ee_email))
5555

5656
setup(name='ee',
57-
version='3.1.0',
57+
version='3.1.1',
5858
description=long_description,
5959
long_description=long_description,
6060
classifiers=[],

0 commit comments

Comments
 (0)