From db744d405fa2e3c92e3d118df0de01a9a3e74090 Mon Sep 17 00:00:00 2001 From: hanhnt2-hblab Date: Tue, 26 May 2026 02:15:04 +0700 Subject: [PATCH] fix: support nested group paths in SSH Git URLs (#2379) Co-authored-by: Brian --- tools/installer/modules/custom-module-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/installer/modules/custom-module-manager.js b/tools/installer/modules/custom-module-manager.js index 67f9cbad9..8a5ea8863 100644 --- a/tools/installer/modules/custom-module-manager.js +++ b/tools/installer/modules/custom-module-manager.js @@ -115,7 +115,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 {