From 8e616d7126450fe4f3fb34e22fc5ce10492fbd99 Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Mon, 19 Feb 2018 21:04:47 -0500 Subject: 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) -- cgit v1.2.3-65-gdbad