Updating ConfigCommand so that we can set github-domains from the command line.
parent
7148b22414
commit
f8376a5b34
|
@ -308,6 +308,18 @@ EOT
|
|||
return $vals;
|
||||
}
|
||||
),
|
||||
'github-domains' => array(
|
||||
function ($vals) {
|
||||
if (!is_array($vals)) {
|
||||
return 'array expected';
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
function ($vals) {
|
||||
return $vals;
|
||||
}
|
||||
),
|
||||
);
|
||||
|
||||
foreach ($uniqueConfigValues as $name => $callbacks) {
|
||||
|
|
Loading…
Reference in New Issue