test if will fix ci actions
CI / testsuite (mysql, 8.2, ) (push) Failing after 6m18s Details
CI / testsuite (mysql, 8.4, ) (push) Successful in 10m55s Details
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Failing after 6m10s Details
CI / Coding Standard & Static Analysis (push) Has been cancelled Details

This commit is contained in:
Brandon Shipley 2025-09-10 23:29:40 -07:00
parent db79a636b3
commit 77283191ef
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class BaseControllerTest extends TestCase
$newName = $productsFolder . DS . '2c386086-f4c5-4093-bea5-ee9c29479f58.png'; $newName = $productsFolder . DS . '2c386086-f4c5-4093-bea5-ee9c29479f58.png';
if (file_exists($toCopy)) { if (file_exists($toCopy)) {
if (!file_exists($productsFolder)) { if (!file_exists($productsFolder)) {
mkdir($productsFolder); mkdir($productsFolder, 0775, true);
} }
copy($toCopy, $newName); copy($toCopy, $newName);
} }