You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixes error message at every call when token is missing
when token is missing and a private repo is set, we output an error
this has been removed while a better solution is designed
fixed erroneous matches in tarballs
Matcher was searching for files ending with binary listed in distributions
thus, `_rg` would match `rg` specification, and since the former appears after the latter in the tarball, `_ rg` would be installed as the binary (but the file contains the completion).
To solve this, added support for regexps in distribution binaries specification.
Fixes#239