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

Signed-off-by: provokateurin <kate@provokateurin.de>
pull/51594/head
provokateurin 2 weeks ago
parent f85154f1e1
commit e2507b23bd
No known key found for this signature in database
  1. 2
      occ

2
occ

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

Loading…
Cancel
Save