Compare commits

...

2 Commits

Author SHA1 Message Date
hanhnt2-hblab 7e9f8bdc3a
Merge ddeba1eacb into c52c9b5b0e 2026-05-14 04:45:20 +07:00
Hanh Nguyen ddeba1eacb fix: support nested group paths in SSH Git URLs 2026-05-13 13:09:20 +07:00
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class CustomModuleManager {
}
// SSH URL: git@host:owner/repo.git
const sshMatch = trimmed.match(/^git@([^:]+):([^/]+)\/([^/.]+?)(?:\.git)?$/);
const sshMatch = trimmed.match(/^git@([^:]+):(.+?)\/([^/.]+?)(?:\.git)?$/);
if (sshMatch) {
const [, host, owner, repo] = sshMatch;
return {