aboutsummaryrefslogtreecommitdiff
path: root/grs
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-02-19 21:04:47 -0500
committerAnthony G. Basile <blueness@gentoo.org>2018-02-19 21:04:47 -0500
commit8e616d7126450fe4f3fb34e22fc5ce10492fbd99 (patch)
tree3ac2c89fc68fcf7c95b0ca426bb2408705bc7c02 /grs
parentgrs/Kernel.py: fix typo (diff)
downloadgrss-8e616d7126450fe4f3fb34e22fc5ce10492fbd99.tar.gz
grss-8e616d7126450fe4f3fb34e22fc5ce10492fbd99.tar.bz2
grss-8e616d7126450fe4f3fb34e22fc5ce10492fbd99.zip
grs/Synchronize.py: update tracking the remote branch
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)