Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
Revise Help message 🍣 (#20)
Browse files Browse the repository at this point in the history
* Remove unnecessary `S` on help

* Modify Name/ Description
  • Loading branch information
shtakai authored Oct 8, 2020
1 parent 2e36870 commit a064870
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ var VERSION = ""

func main() {
app := cli.NewApp()
app.Name = color.HiGreenString("Postwoman CLI")
app.Name = color.HiGreenString("Hoppscotch CLI")
app.Version = color.HiRedString(VERSION)
app.Usage = color.HiYellowString("Test API endpoints without the hassle")
app.Description = color.HiBlueString("Made with <3 by Postwoman Team")
app.Description = color.HiBlueString("Made with <3 by Hoppscotch Team")

var out string

Expand Down Expand Up @@ -111,20 +111,20 @@ func main() {
},
{
Name: "send",
Usage: "Test all the Endpoints in the Postwoman Collection.json",
Usage: "Test all the Endpoints in the Hoppscotch Collection.json",
Action: func(c *cli.Context) error {
var err error
out, err = mets.ReadCollection(c)
return err
},
},
}
cli.AppHelpTemplate = fmt.Sprintf(`%sS
cli.AppHelpTemplate = fmt.Sprintf(`%s
WE REALLY NEED YOUR FEEDBACK,
WE REALLY NEED YOUR FEEDBACK,
CREATE A NEW ISSUE FOR BUGS AND FEATURE REQUESTS : < https://github.com/hoppscotch/hopp-cli >
`, cli.AppHelpTemplate)

err := app.Run(os.Args)
Expand Down

0 comments on commit a064870

Please sign in to comment.