Use spaces instead of tabs to indent -Xlist-phases.

In Terminal.app and xterm the output columns get misaligned when using tabs.
Tabbed output only renders correctly when `tabstop=1`.
This commit is contained in:
Martin Petrov
2019-04-27 14:56:44 -04:00
committed by Georgy Bronnikov
parent 91d16ee947
commit ccf2941f4a
@@ -42,7 +42,7 @@ class PhaseConfig(
val enabled = if (phase in enabled) "(Enabled)" else ""
val verbose = if (phase in verbose) "(Verbose)" else ""
println(String.format("%1$-50s %2$-50s %3$-10s", "${"\t".repeat(depth)}${phase.name}:", phase.description, "$enabled $verbose"))
println(String.format("%1$-50s %2$-50s %3$-10s", "${" ".repeat(depth)}${phase.name}:", phase.description, "$enabled $verbose"))
}
}