Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-15 18:45:33 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-15 18:45:33 (GMT)
commitb053b56bdf966af64073739bc7904fd7bf40489f (patch)
tree9c21b33099c4f7dc547d52cac2e090228efdc136 /devbot/build.py
parent1ced35304f1b9d782ac513541aa2287a49b0ad30 (diff)
Revert unintended change
Diffstat (limited to 'devbot/build.py')
-rw-r--r--devbot/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/build.py b/devbot/build.py
index dfb98b5..fbf45b1 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -75,7 +75,7 @@ def pull_source(module):
os.chdir(config.source_dir)
command.run(["git", "clone", "--progress",
module["repo"], module["name"]])
- command.run([module_dir])
+ os.chdir(module_dir)
branch = module.get("branch", "master")
command.run(["git", "checkout", branch])