Merge pull request #429 from JHeimbach/fix-configloading
stop config.yml on loading again
This commit is contained in:
commit
af237c1d67
1 changed files with 1 additions and 1 deletions
|
@ -894,7 +894,7 @@ class Pico
|
||||||
// merge $config of config/*.yml files
|
// merge $config of config/*.yml files
|
||||||
$configFiles = $this->getFilesGlob($this->getConfigDir() . '*.yml');
|
$configFiles = $this->getFilesGlob($this->getConfigDir() . '*.yml');
|
||||||
foreach ($configFiles as $configFile) {
|
foreach ($configFiles as $configFile) {
|
||||||
if ($configFile !== 'config.yml') {
|
if ($configFile !== $this->getConfigDir() . 'config.yml') {
|
||||||
$this->config += $loadConfigClosure($configFile);
|
$this->config += $loadConfigClosure($configFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue