]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
feat update: git recurse submodule
authorSONOLET Aymeric <aymeric.sonolet@cea.fr>
Fri, 8 Dec 2023 14:41:39 +0000 (15:41 +0100)
committerSONOLET Aymeric <aymeric.sonolet@cea.fr>
Fri, 8 Dec 2023 14:41:39 +0000 (15:41 +0100)
src/system.py

index 033ce06c7f221c9e02df5735373d633c3399794f..a5d84eda7eba7e1190f016a5bea368d8d2b8ed94 100644 (file)
@@ -238,7 +238,7 @@ def git_pull(from_what, tag, git_options, where, logger, environment=None):
     where.make()
   where_git = os.path.join(str(where), ".git")
   cmd = r"""
-git --git-dir=%(where_git)s --work-tree=%(where)s pull %(git_options)s --ff-only origin %(tag)s
+git --git-dir=%(where_git)s --work-tree=%(where)s pull %(git_options)s --recurse-submodule --ff-only origin %(tag)s
 """
   cmd = cmd % {'git_options': git_options, 'tag': tag, 'where': str(where), 'where_git': where_git}