mirror of
https://github.com/nextcloud/server.git
synced 2025-12-18 15:56:14 -05:00
fix(occ): Suppress errors when checking config.php fileowner
Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
parent
f85154f1e1
commit
e2507b23bd
1 changed files with 1 additions and 1 deletions
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…
Reference in a new issue