diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-23 17:55:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-23 17:55:09 +0100 |
| commit | ace03b28f02c07f12e2f1c80d088da8590573f75 (patch) | |
| tree | 5f8c54dc4d281e7eb28c2276977df55f5f12ccdb | |
| parent | 401e77f0d39699324818413b4df5bc1b549d3079 (diff) | |
Quieten submodule commands.
| -rwxr-xr-x | cdist | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |
