Skip to content

Commit 970ce09

Browse files
author
Hwashiang Yu
committed
MC-36640: Validation Update
- Fixed integration test failure.
1 parent 01c57b8 commit 970ce09

File tree

1 file changed

+3
-1
lines changed
  • lib/internal/Magento/Framework/Filesystem/Directory

1 file changed

+3
-1
lines changed

lib/internal/Magento/Framework/Filesystem/Directory/Read.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@ public function isExist($path = null)
221221
{
222222
$this->validatePath($path);
223223

224-
return $this->driver->isExists($this->driver->getAbsolutePath($this->path, $path));
224+
return $this->driver->isExists(
225+
$this->driver->getRealPathSafety($this->driver->getAbsolutePath($this->path, $path))
226+
);
225227
}
226228

227229
/**

0 commit comments

Comments
 (0)