diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-07-26 23:10:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 23:10:12 +0200 |
commit | 97462295587f4016066264edb6eed5d5e17903f3 (patch) | |
tree | c90ee2b1f83effd9a385b7bf240790ffc3d2ce1b /lib/private/App | |
parent | cb9f3423e246708821bd7cee5a9e530d9a5bbcbb (diff) | |
parent | bebf888c726fbac9f9c972af1e5f81247d22fd9d (diff) | |
download | nextcloud-server-97462295587f4016066264edb6eed5d5e17903f3.tar.gz nextcloud-server-97462295587f4016066264edb6eed5d5e17903f3.zip |
Merge pull request #30030 from nextcloud/fexists
Fix disabled `php_uname`
Diffstat (limited to 'lib/private/App')
-rw-r--r-- | lib/private/App/AppStore/Bundles/HubBundle.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/App/AppStore/Bundles/HubBundle.php b/lib/private/App/AppStore/Bundles/HubBundle.php index a52de1dfbd4..d5d236a1855 100644 --- a/lib/private/App/AppStore/Bundles/HubBundle.php +++ b/lib/private/App/AppStore/Bundles/HubBundle.php @@ -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' : ''); } |