From ab7f840215b9324b12dc3e08932a1d2e1fbecc8c Mon Sep 17 00:00:00 2001 From: Timon Ringwald Date: Wed, 17 Aug 2022 22:55:17 +0200 Subject: [PATCH] fixed buggy error message --- init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.go b/init.go index 5c7d1de..4052a4a 100644 --- a/init.go +++ b/init.go @@ -82,7 +82,7 @@ func Init() { if !*NoCompress { if _, err := exec.LookPath("upx"); err != nil { - Println(ColorWarn.Sprint(os.Stderr, "upx not found in PATH. file compression not possible")) + Println(ColorWarn.Sprint("upx not found in PATH. file compression not possible")) *NoCompress = true } }