Merge pull request #30030 from nextcloud/fexists

Fix disabled `php_uname`
This commit is contained in:
Vincent Petry 2022-07-26 23:10:12 +02:00 коммит произвёл GitHub
Родитель cb9f3423e2 bebf888c72
Коммит 9746229558
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -39,8 +39,8 @@ class HubBundle extends Bundle {
'mail',
];
$architecture = php_uname('m');
if (PHP_OS_FAMILY === 'Linux' && in_array($architecture, ['x86_64', 'aarch64'])) {
$architecture = function_exists('php_uname') ? php_uname('m') : null;
if (isset($architecture) && PHP_OS_FAMILY === 'Linux' && in_array($architecture, ['x86_64', 'aarch64'])) {
$hubApps[] = 'richdocuments';
$hubApps[] = 'richdocumentscode' . ($architecture === 'aarch64' ? '_arm64' : '');
}