kh
Some checks failed
smoke-mm / Install & smoke test mm --help (push) Has been cancelled
Some checks failed
smoke-mm / Install & smoke test mm --help (push) Has been cancelled
This commit is contained in:
8
CLI.py
8
CLI.py
@@ -1047,7 +1047,9 @@ class CmdletExecutor:
|
||||
nonlocal progress_ui, pipe_idx
|
||||
|
||||
# Keep behavior consistent with pipeline runner exclusions.
|
||||
if cmd_name_norm in {"get-relationship", "get-rel", ".pipe", ".matrix"}:
|
||||
# Some commands render their own Rich UI (tables/panels) and don't
|
||||
# play nicely with Live cursor control.
|
||||
if cmd_name_norm in {"get-relationship", "get-rel", ".pipe", ".matrix", ".telegram", "telegram", "delete-file", "del-file"}:
|
||||
return
|
||||
|
||||
try:
|
||||
@@ -2038,6 +2040,10 @@ class PipelineExecutor:
|
||||
# progress can linger across those phases and interfere with interactive output.
|
||||
if name == ".matrix":
|
||||
continue
|
||||
# `delete-file` prints a Rich table directly; Live progress interferes and
|
||||
# can truncate/overwrite the output.
|
||||
if name in {"delete-file", "del-file"}:
|
||||
continue
|
||||
pipe_stage_indices.append(idx)
|
||||
pipe_labels.append(name)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user