Skip to content

Commit

Permalink
fix print style
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Nov 20, 2024
1 parent 5e3a09c commit c35d386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfupdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit c35d386

Please sign in to comment.