Skip to content

Commit 4514e65

Browse files
committed
ACP2E-517: fix deploy for child theme files in compact mode
1 parent 65714d4 commit 4514e65

File tree

1 file changed

+3
-1
lines changed
  • app/code/Magento/Deploy/Package/Processor/PreProcessor

1 file changed

+3
-1
lines changed

app/code/Magento/Deploy/Package/Processor/PreProcessor/Less.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ private function inParentFiles($fileName, $parentFile, $map)
151151
return true;
152152
} else {
153153
foreach ($map[$parentFile] as $pFile) {
154-
return $this->inParentFiles($fileName, $pFile, $map);
154+
if ($this->inParentFiles($fileName, $pFile, $map)) {
155+
return true;
156+
}
155157
}
156158
}
157159
}

0 commit comments

Comments
 (0)