Skip to content

Commit 183b757

Browse files
committed
Fixes color on windows.
Signed-off-by: Eric Wang <[email protected]>
1 parent 9249603 commit 183b757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/list.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ cmd.handler = function(argv) {
8585
let len = 0;
8686
for (let x of badges) {
8787
if (len + x.length + 3 >= 60) {
88-
log.printf('%12s%s', ' ', chalk.dim(buf.join(' | ')));
88+
log.printf('%12s%s', ' ', chalk.gray(buf.join(' | ')));
8989
buf = [];
9090
len = 0;
9191
}

0 commit comments

Comments
 (0)