fix for composer_home being missing

This commit is contained in:
Gabriel Baker 2013-10-17 08:50:37 +01:00
parent a54fcf44e3
commit 24602766aa
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -8,3 +8,4 @@ config.php
.buildpath
.htaccess
PHPCI/config.yml
cache

View file

@ -76,7 +76,7 @@ class PluginController extends \PHPCI\Controller
$this->setComposerJson($json);
if ($this->canInstall) {
shell_exec($this->composerPath . ' update --working-dir=' . APPLICATION_PATH . ' > /dev/null 2>&1 &');
shell_exec($this->composerPath . ' update --working-dir=' . APPLICATION_PATH . ' > /' . APPLICATION_PATH . '/phpci_composer_remove.log 2>&1 &');
}
header('Location: ' . PHPCI_URL . 'plugin?r=' . $package);
@ -101,7 +101,7 @@ class PluginController extends \PHPCI\Controller
$this->setComposerJson($json);
if ($this->canInstall) {
shell_exec($this->composerPath . ' update --working-dir=' . APPLICATION_PATH . ' > /dev/null 2>&1 &');
shell_exec('COMPOSER_HOME='.APPLICATION_PATH . ' ' . $this->composerPath . ' update --working-dir=' . APPLICATION_PATH . ' > /' . APPLICATION_PATH . '/phpci_composer_install.log 2>&1 &');
header('Location: ' . PHPCI_URL . 'plugin?i=' . $package);
die;