Looks to me like #613 does not allow the "new" token format from github which start tokens with a string like ghp_ to be accepted.
@Trott wondering what the motivation for this addition was:
if (!/^[0-9a-f]+$/.test(token)) {
errorExit(token must be lowercase hexadecimal, received ${token});
}
Looks to me like #613 does not allow the "new" token format from github which start tokens with a string like
ghp_to be accepted.@Trott wondering what the motivation for this addition was:
if (!/^[0-9a-f]+$/.test(token)) {
errorExit(
token must be lowercase hexadecimal, received ${token});}