Skip to content

Commit

Permalink
Update version tag (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
kingishb committed Feb 10, 2021
1 parent 344ee39 commit 139b965
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var (

func main() {
app := cli.NewApp()
app.Version = "1.3.4"
app.Version = "1.3.6"

app.Usage = "simple ssm param store interface"
app.Flags = []cli.Flag{
Expand Down Expand Up @@ -80,10 +80,7 @@ func main() {
fmt.Fprintln(w, k)
}
err = w.Flush()
if err != nil {
return err
}
return nil
return err
},
},
{
Expand Down Expand Up @@ -291,7 +288,6 @@ func list(s string, showValue, ts, stripPrefix bool) ([]string, error) {
sort.Slice(params, func(i, j int) bool {
return params[i].t.Before(*params[j].t)
})

} else {
sort.Slice(params, func(i, j int) bool {
return params[i].name < params[j].name
Expand Down

0 comments on commit 139b965

Please sign in to comment.