Browse Source

Merge pull request #701 from harshadyeola/master

Fix #700
master
Prabuddha Chakraborty 9 years ago
parent
commit
6b6f539e18
  1. 2
      ee/core/variables.py
  2. 2
      install

2
ee/core/variables.py

@ -16,7 +16,7 @@ class EEVariables():
# EasyEngine packages versions
ee_wp_cli = "0.22.0"
ee_wp_cli = "0.23.0"
ee_adminer = "4.2.1"
ee_roundcube = "1.1.4"
# ee_vimbadmin = "3.0.12"

2
install

@ -234,7 +234,7 @@ function ee_update_wp_cli()
if [ "${WP_CLI_PATH}" != "" ]; then
# Get WP-CLI version
WP_CLI_VERSION=$(${PHP_PATH} ${WP_CLI_PATH} --allow-root cli version | awk '{ print $2 }')
dpkg --compare-versions ${WP_CLI_VERSION} lt 0.21.1
dpkg --compare-versions ${WP_CLI_VERSION} lt 0.23.0
# Update WP-CLI version
if [ "$?" == "0" ]; then
wget -qO ${WP_CLI_PATH} https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar

Loading…
Cancel
Save