Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-12 20:17:16 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-12 20:17:16 (GMT)
commitab9e2ce3a985e784b72becc17bf1b71373974913 (patch)
treeb802bebc7b255134634dac022a677f0b3ee17cfd /scripts
parent72f029997ecc4d5fed479120d77d844b95732ad2 (diff)
Show progress while cloning
Trying to fix buildbot giving up if the checkout takes too long
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dn-build3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/dn-build b/scripts/dn-build
index 14daf33..b242a0e 100755
--- a/scripts/dn-build
+++ b/scripts/dn-build
@@ -95,7 +95,8 @@ def pull_source(module):
run_command(["git", "remote", "update", "origin"])
else:
os.chdir(source_dir)
- run_command(["git", "clone", module["repo"], module["name"]])
+ run_command(["git", "clone", "--progress",
+ module["repo"], module["name"]])
os.chdir(module_dir)
branch = module.get("branch", "master")