Skip to content

Commit

Permalink
print versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sethpollack committed Nov 23, 2018
1 parent d617b1b commit 0625a34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=v1.2.1
VERSION=v1.2.2

.PHONY: release
release: tag build_darwin build_linux
Expand Down
4 changes: 2 additions & 2 deletions cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ var listCmd = &cobra.Command{
r := repo.New(cfg.RootDir)
r.Init()

for key, _ := range r.Applets {
fmt.Println(key)
for key, a := range r.Applets {
fmt.Printf("%s:%s\n", key, a.Tag)
}

return nil
Expand Down

0 comments on commit 0625a34

Please sign in to comment.