aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2025-03-20 08:03:05 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2025-03-26 09:14:32 +0000
commit48a1997bc6928231b4d779c8a57bb218b54cd4e7 (patch)
tree1b072fd46b2a1d1b464f601076bde9063c2ad276
parent1e98bfc8efb89268b3d93c364923598542852890 (diff)
downloadnextcloud-server-backport/51594/stable30.tar.gz
nextcloud-server-backport/51594/stable30.zip
fix(occ): Suppress errors when checking config.php fileownerbackport/51594/stable30
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;
}