summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-23 17:55:09 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-23 17:55:09 +0100
commitace03b28f02c07f12e2f1c80d088da8590573f75 (patch)
tree5f8c54dc4d281e7eb28c2276977df55f5f12ccdb
parent401e77f0d39699324818413b4df5bc1b549d3079 (diff)
Quieten submodule commands.
-rwxr-xr-xcdist4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdist b/cdist
index 89bc719..dca6717 100755
--- 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)