aboutsummaryrefslogtreecommitdiff
path: root/grs
diff options
context:
space:
mode:
Diffstat (limited to 'grs')
-rw-r--r--grs/Synchronize.py2
1 files changed, 1 insertions, 1 deletions
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)