mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-07 06:29:49 +01:00
fix apps managed by Composer (eg. projectmanager) are not updated
this was done on purpuse to let Composer take care of it, but it does not happen (probably because we are just on a branch not a tag, hash / version)
This commit is contained in:
parent
f9098ae370
commit
5d7efb18f6
@ -231,9 +231,9 @@ $failed = array();
|
||||
$succieded = 0;
|
||||
foreach(scandir(__DIR__) as $dir)
|
||||
{
|
||||
if ($dir !== '..' && file_exists(__DIR__.'/'.$dir.'/.git') &&
|
||||
if ($dir !== '..' && file_exists(__DIR__.'/'.$dir.'/.git'))
|
||||
// these apps / dirs are managed by composer, no need to run manual updates
|
||||
!in_array($dir, ['vendor', 'activesync', 'collabora', 'projectmanager', 'tracker']))
|
||||
//!in_array($dir, ['vendor', 'activesync', 'collabora', 'projectmanager', 'tracker']))
|
||||
{
|
||||
$cmd = "cd $dir ; $git stash -q ; ";
|
||||
// switch message about detached head off for release-channel/tags
|
||||
|
Loading…
Reference in New Issue
Block a user