From ddeba1eacb7a784574dab17994162f6c9ede448b Mon Sep 17 00:00:00 2001 From: Hanh Nguyen Date: Wed, 13 May 2026 12:33:09 +0700 Subject: [PATCH] fix: support nested group paths in SSH Git URLs --- 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 9dd9e8b6d0..e129f5aadd 100644 --- a/tools/installer/modules/custom-module-manager.js +++ b/tools/installer/modules/custom-module-manager.js @@ -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 {