Skip to content

Commit

Permalink
Merge pull request #1 from drupal-pattern-lab/feature/fix-parse-error
Browse files Browse the repository at this point in the history
Remove extra character from InstallerUtil so dev branch works
  • Loading branch information
EvanLovely authored May 9, 2017
2 parents 7dd6d48 + 44c0dd0 commit 0c30ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PatternLab/InstallerUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ protected static function parseComponentList($packageName,$sourceBase,$destinati
foreach ($finder as $file) {

$ext = $file->getExtension();
$pathName = $file->getPathname());
$pathName = $file->getPathname();

if ($ext == "css") {
$componentTypes["stylesheets"][] = str_replace(DIRECTORY_SEPARATOR,"/",str_replace($sourceBase.$source,$destination,$pathName));
Expand Down

0 comments on commit 0c30ad1

Please sign in to comment.