From e2507b23bd740c735ab49e31f148d957d2b6c8ff Mon Sep 17 00:00:00 2001 From: provokateurin Date: Thu, 20 Mar 2025 08:03:05 +0100 Subject: [PATCH] fix(occ): Suppress errors when checking config.php fileowner Signed-off-by: provokateurin --- occ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/occ b/occ index e4dcc80c9da..b7cfe961bde 100755 --- a/occ +++ b/occ @@ -17,7 +17,7 @@ function dropPrivileges(): void { } $configPath = __DIR__ . '/config/config.php'; - $uid = fileowner($configPath); + $uid = @fileowner($configPath); if ($uid === false) { return; }