fix(occ): Suppress errors when checking config.php fileowner

Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
provokateurin
2025-03-20 08:03:05 +01:00
committed by backportbot[bot]
parent 1e98bfc8ef
commit 48a1997bc6

2
occ
View File

@@ -17,7 +17,7 @@ function dropPrivileges(): void {
}
$configPath = __DIR__ . '/config/config.php';
$uid = fileowner($configPath);
$uid = @fileowner($configPath);
if ($uid === false) {
return;
}