aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2025-03-20 08:03:05 +0100
committerprovokateurin <kate@provokateurin.de>2025-03-20 08:03:05 +0100
commite2507b23bd740c735ab49e31f148d957d2b6c8ff (patch)
treead9cf5371a73df4645b55641f5553861b7597625
parentf85154f1e1a3bfcf022cd1833a3028ea9c63380e (diff)
downloadnextcloud-server-fix/occ/config-fileowner-suppress-errors.tar.gz
nextcloud-server-fix/occ/config-fileowner-suppress-errors.zip
fix(occ): Suppress errors when checking config.php fileownerfix/occ/config-fileowner-suppress-errors
Signed-off-by: provokateurin <kate@provokateurin.de>
-rwxr-xr-xocc2
1 files changed, 1 insertions, 1 deletions
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;
}