Fixes # 122567: regex included .git in capture

This commit is contained in:
Eric Amodio 2021-04-28 13:27:43 -04:00
parent 5082e72921
commit c8c96aae9d

View file

@ -140,9 +140,7 @@ export class GithubPushErrorHandler implements PushErrorHandler {
return false;
}
const match = /^https:\/\/github\.com\/([^/]+)\/([^/]+)(?:\.git)?/i.exec(remoteUrl)
|| /^git@github\.com:([^/]+)\/([^/]+)(?:\.git)?/i.exec(remoteUrl);
const match = /^(?:https:\/\/github\.com\/|git@github\.com:)([^/]+)\/([^/.]+)(?:\.git)?$/i.exec(remoteUrl);
if (!match) {
return false;
}