From 272b0e28c80d02dee037558176d46de224ed7b0a Mon Sep 17 00:00:00 2001 From: ZacharyZcR Date: Sat, 13 Jun 2026 22:21:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=9D=9E=E7=BB=88=E7=AB=AF=E8=BE=93?= =?UTF-8?q?=E5=87=BA=E6=97=B6=E7=A6=81=E7=94=A8=E8=BF=9B=E5=BA=A6=E6=9D=A1?= =?UTF-8?q?=EF=BC=8C=E9=98=B2=E6=AD=A2ANSI=E6=8E=A7=E5=88=B6=E7=A0=81?= =?UTF-8?q?=E8=A6=86=E7=9B=96=E6=89=AB=E6=8F=8F=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/progress_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/progress_manager.go b/common/progress_manager.go index 4de2309..a69a47b 100644 --- a/common/progress_manager.go +++ b/common/progress_manager.go @@ -107,7 +107,7 @@ func GetProgressManager() *ProgressManager { // InitProgress 初始化进度条 func (pm *ProgressManager) InitProgress(total int64, description string) { cfg := GetGlobalConfig() - if cfg.Output.DisableProgress || cfg.Output.Silent { + if cfg.Output.DisableProgress || cfg.Output.Silent || cfg.Output.NoColor { pm.enabled = false return }