We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c86150 commit 7cb258eCopy full SHA for 7cb258e
src/PatternLab/Config.php
@@ -155,7 +155,7 @@ public static function init($baseDir = "", $verbose = true) {
155
// set the default config using the pattern lab config
156
try {
157
$defaultOptions = Yaml::parse(file_get_contents(self::$plConfigPath));
158
- $defaultOptions = array_merge(self::$options, $defaultOptions);
+ self::$options = array_merge(self::$options, $defaultOptions);
159
} catch (ParseException $e) {
160
Console::writeError("Config parse error in <path>".Console::getHumanReadablePath(self::$plConfigPath)."</path>: ".$e->getMessage());
161
}
0 commit comments