From ce5d25c6765454c330d65ce962fa299667c4e35f Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sun, 29 Jun 2025 15:50:09 -0600 Subject: [PATCH] didnt implement windows correctly --- listen.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/listen.go b/listen.go index 627c9f1..d87b611 100644 --- a/listen.go +++ b/listen.go @@ -30,10 +30,10 @@ type Listen struct { } func printStatus(msg string) { - c := color.New(color.FgWhite) if runtime.GOOS == "windows" { - c.Fprintf(color.Output, "%s", msg) + fmt.Fprintf(color.Output, "%s", color.WhiteString(msg)) } else { + c := color.New(color.FgWhite) c.Fprintf(os.Stderr, "%s", msg) } }