commit: 8e616d7126450fe4f3fb34e22fc5ce10492fbd99
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 20 02:04:47 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Tue Feb 20 02:04:47 2018 +0000
URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=8e616d71
grs/Synchronize.py: update tracking the remote branch
grs/Synchronize.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/grs/Synchronize.py b/grs/Synchronize.py
index d2d4cb5..be41bd6 100644
--- a/grs/Synchronize.py
+++ b/grs/Synchronize.py
@@ -54,7 +54,7 @@ class Synchronize():
# 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
+ cmd = 'git -C %s submodule update --remote' % self.local_repo
Execute(cmd, timeout=60, logfile=self.logfile)