Skip to content
This repository has been archived by the owner on Oct 10, 2019. It is now read-only.

Commit

Permalink
Fix glob path loading in assets configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
neilime authored Aug 20, 2018
1 parent 5fc04a6 commit c3adfab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AssetsBundle/AssetFile/AssetFilesConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function getAssetFileFromFilePath(\AssetsBundle\AssetFile\AssetFile $oAss
elseif (strpos($sAssetRealPath, '*') !== false) {
$oGlobIterator = new \GlobIterator($sAssetRealPath);
foreach ($oGlobIterator as $oItem) {
$this->getAssetFileFromFilePath($oAssetFile, $oItem->key());
$this->getAssetFileFromFilePath($oAssetFile, $oItem->getRealPath());
}
return $this;
}
Expand Down

0 comments on commit c3adfab

Please sign in to comment.