commit: fc61730175767bbfb2f8ad6658b353eb5a23772c
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 6 11:33:29 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Tue Feb 6 11:33:29 2018 +0000
URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=fc617301
grs/Synchronize.py: always re-init submodules
grs/Synchronize.py | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/grs/Synchronize.py b/grs/Synchronize.py
index 199928b..97174f5 100644
--- a/grs/Synchronize.py
+++ b/grs/Synchronize.py
@@ -30,9 +30,6 @@ class Synchronize():
self.logfile = logfile
def sync(self):
- # If there is a .gitmodules, then update the submodules
- git_modulesfile = os.path.join(self.local_repo, '.gitmodules')
-
if self.isgitdir():
# If the local repo exists, then make it pristine an pull
cmd = 'git -C %s reset HEAD --hard' % self.local_repo
@@ -48,11 +45,16 @@ class Synchronize():
# else clone afresh.
cmd = 'git clone %s %s' % (self.remote_repo, self.local_repo)
Execute(cmd, timeout=60, logfile=self.logfile)
- if os.path.isfile(git_modulesfile):
- cmd = 'git -C %s submodule init' % self.local_repo
- Execute(cmd, timeout=60, logfile=self.logfile)
- cmd = 'git -C %s submodule update' % self.local_repo
- Execute(cmd, timeout=60, logfile=self.logfile)
+
+ # If there is a .gitmodules, then init/update the submodules
+ git_modulesfile = os.path.join(self.local_repo, '.gitmodules')
+ if os.path.isfile(git_modulesfile):
+ # This may re-init submodules, but its harmless. We need
+ # to keep trying for newly added modules.
+ cmd = 'git -C %s submodule init' % self.local_repo
+ Execute(cmd, timeout=60, logfile=self.logfile)
+ cmd = 'git -C %s submodule update' % self.local_repo
+ Execute(cmd, timeout=60, logfile=self.logfile)
# Make sure we're on the correct branch for the desired GRS system.
cmd = 'git -C %s checkout %s' % (self.local_repo, self.branch)