Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
Diffstat (limited to 'devbot')
-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])