Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")