From fb013fe4ec63c0ddbbda891218e51aafd8850a92 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Wed, 7 Aug 2024 20:58:16 -0600 Subject: [PATCH] fix(git): add --recursive-submodules flag --- apps/dokploy/server/utils/providers/git.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dokploy/server/utils/providers/git.ts b/apps/dokploy/server/utils/providers/git.ts index b6f23705..34215bd5 100644 --- a/apps/dokploy/server/utils/providers/git.ts +++ b/apps/dokploy/server/utils/providers/git.ts @@ -56,6 +56,7 @@ export const cloneGitRepository = async ( customGitBranch, "--depth", "1", + "--recurse-submodules", customGitUrl, outputPath, "--progress",