diff --git a/subcmd/list.go b/subcmd/list.go index e9078ec..4f35187 100644 --- a/subcmd/list.go +++ b/subcmd/list.go @@ -81,7 +81,7 @@ func (c *List) Run(args []string) error { if filepath.Join(path.InstallDir(), f.Name()) == current { name = color.New(color.FgYellow, color.BgBlack).Sprintf("%s", f.Name()) } else { - name = fmt.Sprintf("%s", f.Name()) + name = f.Name() } c.log.Printf(name) }