Quieten submodule commands.
authorCarl Hetherington <cth@carlh.net>
Fri, 23 May 2014 16:55:09 +0000 (17:55 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 23 May 2014 16:55:09 +0000 (17:55 +0100)
cdist

diff --git a/cdist b/cdist
index 89bc719350003f4588919ae6a45d87680818c938..dca671737d4c50b9c33a4cfeeb09c8acfb085947 100755 (executable)
--- a/cdist
+++ b/cdist
@@ -523,8 +523,8 @@ class Project(object):
         command('git clone %s %s/%s.git %s/src/%s' % (flags, config.get('git_prefix'), self.name, target.work_dir_cdist(), self.name))
         os.chdir('%s/src/%s' % (target.work_dir_cdist(), self.name))
         command('git checkout %s %s %s' % (flags, self.specifier, redirect))
-        command('git submodule init')
-        command('git submodule update')
+        command('git submodule init --quiet')
+        command('git submodule update --quiet')
         os.chdir(self.directory)
 
         proj = '%s/src/%s/%s' % (target.work_dir_cdist(), self.name, self.directory)