Allow reading repo.0 in config command, fixes #5692
parent
64d29dc6dc
commit
8e1b90bc08
|
@ -235,7 +235,7 @@ EOT
|
||||||
$rawData = $this->configFile->read();
|
$rawData = $this->configFile->read();
|
||||||
$data = $this->config->all();
|
$data = $this->config->all();
|
||||||
if (preg_match('/^repos?(?:itories)?(?:\.(.+))?/', $settingKey, $matches)) {
|
if (preg_match('/^repos?(?:itories)?(?:\.(.+))?/', $settingKey, $matches)) {
|
||||||
if (empty($matches[1])) {
|
if (!isset($matches[1]) || $matches[1] === '') {
|
||||||
$value = isset($data['repositories']) ? $data['repositories'] : array();
|
$value = isset($data['repositories']) ? $data['repositories'] : array();
|
||||||
} else {
|
} else {
|
||||||
if (!isset($data['repositories'][$matches[1]])) {
|
if (!isset($data['repositories'][$matches[1]])) {
|
||||||
|
|
Loading…
Reference in New Issue