From 211a593ed6b805ca7a6872fca912d3fc4bb0dda8 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Wed, 29 Jan 2025 17:12:39 -0300 Subject: [PATCH] chore: ignore warning could be not possible to change the owner. Signed-off-by: Vitor Mattos --- tests/Unit/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/TestCase.php b/tests/Unit/TestCase.php index 96102ce18..11dba6d46 100644 --- a/tests/Unit/TestCase.php +++ b/tests/Unit/TestCase.php @@ -245,7 +245,7 @@ private function getFullLiresignAppFolder(): string { mkdir($path, 0777, true); $user = fileowner(__FILE__); chown($path, $user); - chgrp($path, $user); + @chgrp($path, $user); } return realpath($path); }