From c35d386c00648d7258b806250aab6a4408976a80 Mon Sep 17 00:00:00 2001 From: rsteube Date: Wed, 20 Nov 2024 23:53:25 +0100 Subject: [PATCH] fix print style --- selfupdate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfupdate.go b/selfupdate.go index e7ca9b4..c085339 100644 --- a/selfupdate.go +++ b/selfupdate.go @@ -119,7 +119,7 @@ func (c config) Println(s string) { } func (c config) Printf(format string, any ...any) { - fmt.Fprintf(c.progress, "\x1b[1;2m"+format+"\x1b'[0m", any...) + fmt.Fprintf(c.progress, "\x1b[1;2m"+format+"\x1b[0m", any...) } func (c config) Install(tag, asset string) error {