Fix regression in github fallback behavior
parent
0c85ca426d
commit
a115cfd0d8
|
@ -336,7 +336,7 @@ class RemoteFilesystem
|
||||||
if (!$gitHubUtil->authorizeOAuth($this->originUrl)
|
if (!$gitHubUtil->authorizeOAuth($this->originUrl)
|
||||||
&& (!$this->io->isInteractive() || !$gitHubUtil->authorizeOAuthInteractively($this->originUrl, $message))
|
&& (!$this->io->isInteractive() || !$gitHubUtil->authorizeOAuthInteractively($this->originUrl, $message))
|
||||||
) {
|
) {
|
||||||
throw new TransportException('Could not authenticate against '.$this->originUrl);
|
throw new TransportException('Could not authenticate against '.$this->originUrl, 401);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 404s are only handled for github
|
// 404s are only handled for github
|
||||||
|
|
Loading…
Reference in New Issue