Revert "add config `update.unbuffered`"

This reverts commit b1350a668c.

Parallel updates are a great feature, but they break color.ui and
attempts to fix that have caused unexpected exceptions to be thrown on
Windows, so we need to back the feature out for now until we can get
it done in a way that works with both color and Windows.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2021-10-13 13:48:29 -07:00 committed by Marti Bolivar
parent 89104b0974
commit ebf573fa42
1 changed files with 1 additions and 4 deletions

View File

@ -832,9 +832,6 @@ class Update(_ProjectCommand):
fallback=None)
self.sync_submodules = config.getboolean('update', 'sync-submodules',
fallback=True)
self.unbuffered = args.unbuffered or config.getboolean('update',
'unbuffered',
fallback=False)
self.group_filter: List[str] = []
@ -894,7 +891,7 @@ class Update(_ProjectCommand):
# XXX: this is not picklable
self.parser = None
if self.unbuffered:
if self.args.unbuffered:
logdir = None
logdir_name = None
else: