You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2011/09/19 06:30:29 UTC

svn commit: r1172422 - /gump/trunk/python/gump/core/update/git.py

Author: bodewig
Date: Mon Sep 19 04:30:28 2011
New Revision: 1172422

URL: http://svn.apache.org/viewvc?rev=1172422&view=rev
Log:
explicitly specify URL in pull, maybe this helps git on FreeBSD

Modified:
    gump/trunk/python/gump/core/update/git.py

Modified: gump/trunk/python/gump/core/update/git.py
URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/update/git.py?rev=1172422&r1=1172421&r2=1172422&view=diff
==============================================================================
--- gump/trunk/python/gump/core/update/git.py (original)
+++ gump/trunk/python/gump/core/update/git.py Mon Sep 19 04:30:28 2011
@@ -60,7 +60,7 @@ class GitUpdater(ScmUpdater):
                   module.getSourceControlStagingDirectory())
         cmd.addParameter('pull')
         maybe_make_quiet(module, cmd)
-        cmd.addParameter('origin')
+        cmd.addParameter(module.getScm().getRootUrl())
         return cmd
 
     def workspaceMatchesModule(self, module):