Skip to content

Commit

Permalink
feat(list): change the order and separator
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke committed Mar 10, 2024
1 parent c7765e3 commit cb2e0c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/list/list_installed.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (c *Controller) listInstalledByConfig(cfgFilePath string) error {
return err //nolint:wrapcheck
}
for _, pkg := range cfg.Packages {
fmt.Fprintln(c.stdout, pkg.Registry+","+pkg.Name+","+pkg.Version)
fmt.Fprintln(c.stdout, pkg.Name+"\t"+pkg.Version+"\t"+pkg.Registry)
}
return nil
}

0 comments on commit cb2e0c5

Please sign in to comment.