diff options
Diffstat (limited to 'subcmds/start.py')
| -rw-r--r-- | subcmds/start.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/start.py b/subcmds/start.py index 2593ace6..aa2f915a 100644 --- a/subcmds/start.py +++ b/subcmds/start.py | |||
| @@ -106,7 +106,7 @@ revision specified in the manifest. | |||
| 106 | if not os.path.exists(os.getcwd()): | 106 | if not os.path.exists(os.getcwd()): |
| 107 | os.chdir(self.manifest.topdir) | 107 | os.chdir(self.manifest.topdir) |
| 108 | 108 | ||
| 109 | pm = Progress('Syncing %s' % nb, len(all_projects)) | 109 | pm = Progress('Syncing %s' % nb, len(all_projects), quiet=opt.quiet) |
| 110 | for project in all_projects: | 110 | for project in all_projects: |
| 111 | gitc_project = self.gitc_manifest.paths[project.relpath] | 111 | gitc_project = self.gitc_manifest.paths[project.relpath] |
| 112 | # Sync projects that have not been opened. | 112 | # Sync projects that have not been opened. |
| @@ -129,7 +129,7 @@ revision specified in the manifest. | |||
| 129 | err.append(project) | 129 | err.append(project) |
| 130 | pm.update() | 130 | pm.update() |
| 131 | 131 | ||
| 132 | pm = Progress('Starting %s' % nb, len(all_projects)) | 132 | pm = Progress('Starting %s' % nb, len(all_projects), quiet=opt.quiet) |
| 133 | # NB: Multiprocessing is heavy, so don't spin it up for one job. | 133 | # NB: Multiprocessing is heavy, so don't spin it up for one job. |
| 134 | if len(all_projects) == 1 or opt.jobs == 1: | 134 | if len(all_projects) == 1 or opt.jobs == 1: |
| 135 | _ProcessResults(self._ExecuteOne(opt, nb, x) for x in all_projects) | 135 | _ProcessResults(self._ExecuteOne(opt, nb, x) for x in all_projects) |
