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
parent f85154f1e1
commit e2507b23bd
No known key found for this signature in database

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;
}