Fixed typo in exception message for Bitbucket config command.
parent
9059d70ba0
commit
59ae2716aa
|
@ -494,7 +494,7 @@ EOT
|
||||||
// handle bitbucket-oauth
|
// handle bitbucket-oauth
|
||||||
if (preg_match('/^(bitbucket-oauth)\.(.+)/', $settingKey, $matches)) {
|
if (preg_match('/^(bitbucket-oauth)\.(.+)/', $settingKey, $matches)) {
|
||||||
if (2 !== count($values)) {
|
if (2 !== count($values)) {
|
||||||
throw new \RuntimeException('Excepted two arguments (consumer-key, consumer-secret), got '.count($values));
|
throw new \RuntimeException('Expected two arguments (consumer-key, consumer-secret), got '.count($values));
|
||||||
}
|
}
|
||||||
$this->configSource->removeConfigSetting($matches[1].'.'.$matches[2]);
|
$this->configSource->removeConfigSetting($matches[1].'.'.$matches[2]);
|
||||||
$this->authConfigSource->addConfigSetting($matches[1].'.'.$matches[2], array('consumer-key' => $values[0], 'consumer-secret' => $values[1]));
|
$this->authConfigSource->addConfigSetting($matches[1].'.'.$matches[2], array('consumer-key' => $values[0], 'consumer-secret' => $values[1]));
|
||||||
|
|
Loading…
Reference in New Issue