Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-04-12 19:10:11 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-04-12 19:10:11 (GMT)
commit88e25e136453c871fedbdf5436d3238ad442474e (patch)
tree247adea3ba23f2bf8ea2f0d50a9ac0a41d18bd91
parent3f132f49eeebfe8c7a880dc422ac54f6a54e602d (diff)
Always set the remote
To handle configuration changes.
-rw-r--r--devbot/git.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/devbot/git.py b/devbot/git.py
index c5bdd44..6e6fe1a 100644
--- a/devbot/git.py
+++ b/devbot/git.py
@@ -62,6 +62,7 @@ class Module:
if revision == self._get_commit_id():
return
+ command.run(["git", "remote", "set-url", "origin", self.remote])
command.run(["git", "fetch"], retry=self._retry)
if revision: