Compare commits

...

2 Commits

Author SHA1 Message Date
hanhnt2-hblab 22dc4a243c
Merge ddeba1eacb into 71136bc6af 2026-05-17 04:13:58 +02: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 // SSH URL: git@host:owner/repo.git
const sshMatch = trimmed.match(/^git@([^:]+):([^/]+)\/([^/.]+?)(?:\.git)?$/); const sshMatch = trimmed.match(/^git@([^:]+):(.+?)\/([^/.]+?)(?:\.git)?$/);
if (sshMatch) { if (sshMatch) {
const [, host, owner, repo] = sshMatch; const [, host, owner, repo] = sshMatch;
return { return {