Executing dvc pipeline show --ascii <your-dvc-file.dvc> yields an error (which can be found here). Afterward, the terminal is broken and all outputs are TABed in a wired way; the terminal has to be killed.
Replacing --ascii with --dot solves the problem. Otherwise, as per @MrOutis suggestion:
dvc pipeline show --ascii <your-dvc-file.dvc> | less
is a workaround.
Executing
dvc pipeline show --ascii <your-dvc-file.dvc>yields an error (which can be found here). Afterward, the terminal is broken and all outputs are TABed in a wired way; the terminal has to be killed.Replacing
--asciiwith--dotsolves the problem. Otherwise, as per @MrOutis suggestion:is a workaround.