We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25a153f commit 66db224Copy full SHA for 66db224
app/code/Magento/Deploy/Model/Deployer.php
@@ -185,7 +185,7 @@ private function getOption($name)
185
private function checkSkip($filePath)
186
{
187
if ($filePath != '.') {
188
- $ext = pathinfo($filePath, PATHINFO_EXTENSION);
+ $ext = strtolower(pathinfo($filePath, PATHINFO_EXTENSION));
189
$option = isset(self::$fileExtensionOptionMap[$ext]) ? self::$fileExtensionOptionMap[$ext] : null;
190
191
return $option ? $this->getOption($option) : false;
0 commit comments