From ab9e2ce3a985e784b72becc17bf1b71373974913 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Mon, 12 Nov 2012 20:17:16 +0000 Subject: Show progress while cloning Trying to fix buildbot giving up if the checkout takes too long --- 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") -- cgit v0.9.1