Skip to content

Commit

Permalink
fix command name and version.
Browse files Browse the repository at this point in the history
  • Loading branch information
shirou committed Feb 28, 2018
1 parent 078c296 commit 8ded768
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import (
"github.com/urfave/cli"
)

const VERSION = "0.0.3"

type Args struct {
NoColor bool
Start string
Expand Down Expand Up @@ -100,8 +102,9 @@ var commandListStreams = cli.Command{

func main() {
app := cli.NewApp()
app.Name = "cloudlogs"
app.Usage = "CloudwatchLogs Reader"
app.Name = "awslogsgo"
app.Usage = "AWS Cloudwatch Logs Reader"
app.Version = VERSION
app.Commands = []cli.Command{
commandGet,
commandListGroups,
Expand Down

0 comments on commit 8ded768

Please sign in to comment.