Skip to content

Commit 004cf1e

Browse files
committed
moving config override to the correct location
1 parent 8b76cc9 commit 004cf1e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/PatternLab/InstallerUtil.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -641,13 +641,13 @@ protected static function runTasks($installerInfo) {
641641
Config::updateConfigOption("styleguideKitPath",$pathBase);
642642
}
643643

644-
// override any configs that have been set-up
645-
if (!empty($installerInfo["configOverrides"])) {
646-
foreach ($installerInfo["configOverrides"] as $option => $value) {
647-
Config::updateConfigOption($option,$value, true); // forces the update
648-
}
644+
}
645+
646+
// override any configs that have been set-up
647+
if (!empty($installerInfo["configOverrides"])) {
648+
foreach ($installerInfo["configOverrides"] as $option => $value) {
649+
Config::updateConfigOption($option,$value, true); // forces the update
649650
}
650-
651651
}
652652

653653
if ($installerInfo["projectInstall"]) {

0 commit comments

Comments
 (0)