Skip to content

Commit

Permalink
Put email address and GitHub address and print them on the help
Browse files Browse the repository at this point in the history
  • Loading branch information
zshamrock committed Nov 21, 2018
1 parent 44fa3c1 commit 766c8b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ func main() {
app := cli.NewApp()
app.Name = Name
app.Version = Version
app.Authors = []cli.Author{{Name: "Aliaksandr Kazlou"}}
app.Authors = []cli.Author{{Name: "Aliaksandr Kazlou", Email: "aliaksandr.kazlou@gmail.com"}}
app.Metadata = map[string]interface{}{"GitHub": "https://github.com/zshamrock/vmx"}
app.Usage = usage()
app.EnableBashCompletion = true

Expand All @@ -30,5 +31,6 @@ func main() {
func usage() string {
return fmt.Sprintf(`
vmx is a tool for interacting with cloud instances (like AWS EC2, for example) over SSH
[https://github.com/zshamrock/vmx]
`)
}

0 comments on commit 766c8b8

Please sign in to comment.