diff --git a/pkgs/git-show-link/git-show-link.py b/pkgs/git-show-link/git-show-link.py index f1d9705..0364cd3 100755 --- a/pkgs/git-show-link/git-show-link.py +++ b/pkgs/git-show-link/git-show-link.py @@ -7,13 +7,13 @@ import subprocess REMOTE_TYPES = [ { # github - "match": re.compile(r'git@github.com:(?P<username>\w+)/(?P<project>\w+).git'), + "match": re.compile(r'git@github.com:(?P<username>[\w\.-]+)/(?P<project>[\w\.-]+).git'), "format-branch": lambda g, b: f"https://github.com/{g['username']}/{g['project']}/tree/{b}/", "format-commit": lambda g, c: f"https://github.com/{g['username']}/{g['project']}/commit/{c}/", }, { # gitea - "match": re.compile(r'(?P<gituser>\w+)@(?P<host>[\w\.-]+):(?P<username>\w+)/(?P<project>\w+).git'), + "match": re.compile(r'(?P<gituser>[\w\.-]+)@(?P<host>[\w\.-]+):(?P<username>[\w\.-]+)/(?P<project>[\w\.-]+).git'), "format-branch": lambda g, b: f"https://{g['host']}/{g['username']}/{g['project']}/src/branch/{b}/", "format-commit": lambda g, c: f"https://{g['host']}/{g['username']}/{g['project']}/commit/{c}/", },