Skip to content

Commit 355dde8

Browse files
committed
fix: ignore error when removing "is writable" test file
Signed-off-by: Robin Appelman <[email protected]>
1 parent 10852d3 commit 355dde8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/legacy/OC_Util.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ public static function checkServer(\OC\SystemConfig $config) {
453453
];
454454
} else {
455455
fclose($handle);
456-
unlink($testFile);
456+
@unlink($testFile);
457457
}
458458
} else {
459459
$errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY));

0 commit comments

Comments
 (0)