Browse Source

Fixed missing self

bugfixes
gau1991 10 years ago
parent
commit
1dd0a76bb4
  1. 2
      ee/cli/plugins/stack.py
  2. 2
      ee/cli/plugins/stack_upgrade.py

2
ee/cli/plugins/stack.py

@ -473,7 +473,7 @@ class EEStackController(CementBaseController):
# For debian install xdebug
if EEVariables.ee_platform_distro == "debian":
EEShellExec.cmd_exec("pear install xdebug")
EEShellExec.cmd_exec(self, "pear install xdebug")
with open("/etc/php5/mods-available/xdebug.ini",
encoding='utf-8', mode='a') as myfile:

2
ee/cli/plugins/stack_upgrade.py

@ -85,7 +85,7 @@ class EEStackUpgradeController(CementBaseController):
EEAptGet.install(self, EEVariables.ee_php)
if EEVariables.ee_platform_distro == "debian":
EEShellExec.cmd_exec("pear install xdebug")
EEShellExec.cmd_exec(self, "pear install xdebug")
with open("/etc/php5/mods-available/xdebug.ini",
encoding='utf-8', mode='a') as myfile:

Loading…
Cancel
Save