From d2123efbff279f5e54011f51d67705a83fdd102c Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sun, 29 Oct 2023 20:34:48 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9C=88=EB=8F=84=EC=9A=B0=EC=97=90=EC=84=9C?= =?UTF-8?q?=20=EC=83=89=EC=83=81=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/cli/cli.dart | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/cli/cli.dart b/lib/cli/cli.dart index 5ca718f..684a15c 100644 --- a/lib/cli/cli.dart +++ b/lib/cli/cli.dart @@ -103,8 +103,12 @@ class CLI { static String style(String message, {Color? color, Color? background, Style? style}) { - return printer.getStyle(message, - color: color, background: background, style: style); + if (Platform.isWindows) { + return message; + } else { + return printer.getStyle(message, + color: color, background: background, style: style); + } } static final commandNameSpace = 18;