Compare commits

...

2 Commits

Author SHA1 Message Date
Tamas Cservenak
9a6ad2d7bc PR comments 2022-09-19 16:09:30 +02:00
Tamas Cservenak
1511066266 Fixes module id coloring on Maven transfer.
The module id coloring was not consistent during transfer
and it caused "vibrating" effect.
2022-09-10 11:30:28 +02:00

View File

@@ -767,11 +767,14 @@ public class TerminalOutput implements ClientOutput {
if (transfer != null) {
asb
.append(':')
.style(CYAN_FOREGROUND)
.append(String.format(artifactIdFormat, prj.id))
.style(AttributedStyle.DEFAULT)
.append(transfer);
} else if (execution == null) {
asb
.append(':')
.style(CYAN_FOREGROUND)
.append(prj.id);
} else {
asb