commit: c75f522b4c9ddf46ba9e5c72f8a4cdb3132b54cd Author: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru> AuthorDate: Fri Mar 8 13:10:52 2024 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Sat Mar 9 18:04:54 2024 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=c75f522b
Add git@ Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru> Closes: https://github.com/pkgcore/pkgcore/pull/434 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> src/pkgcore/sync/git.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pkgcore/sync/git.py b/src/pkgcore/sync/git.py index 48d6b3518..ce8f6f8e7 100644 --- a/src/pkgcore/sync/git.py +++ b/src/pkgcore/sync/git.py @@ -11,9 +11,10 @@ class git_syncer(base.VcsSyncer): supported_uris = ( ("git://", 5), ("git+", 5), + ("git@", 5), ) - supported_protocols = ("http://", "https://", "git://") + supported_protocols = ("http://", "https://", "git://", "git@") supported_exts = (".git",) @classmethod
