Resolve paths correctly when deep hashing

Fixes #2270
This commit is contained in:
Samuel Georges 2016-08-05 07:50:51 +10:00
parent 4c1026ca14
commit b02e4d7ecf
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ class CombineAssets
$key = '';
$assetFiles = array_map(function($file) {
return $this->localPath.'/'.$file;
return File::symbolizePath($file, null) ?: $this->localPath . $file;
}, $assets);
foreach ($assetFiles as $file) {