1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 20:51:53 +02:00

Check for custom-git path in e107_config.php (define('e_GIT', 'path-to-git'); ) May solve "sh: git command not found" errors.

This commit is contained in:
Cameron 2015-04-10 14:29:03 -07:00
parent 507308208b
commit cc76f8e75e

View File

@ -40,19 +40,21 @@ class _system_cron
if(is_dir(e_BASE.".git")) // Check it's a Git Repo
{
$gitPath = defset('e_GIT','git'); // addo to e107_config.php to
// Change Dir.
$cmd = 'cd '.e_ROOT;
$mes->addDebug($cmd);
$text .= `$cmd 2>&1`;
$text = `$cmd 2>&1`;
// Remove any local changes.
$cmd = 'git reset --hard';
$cmd = $gitPath.' reset --hard';
$mes->addDebug($cmd);
$text .= `$cmd 2>&1`;
// Run Pull request
$cmd = 'git pull';
$cmd = $gitPath.' pull';
$mes->addDebug($cmd);
$text .= `$cmd 2>&1`;