Skip to content

Commit

Permalink
Adds missing usage information for slack flags/environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
tantalic committed Feb 27, 2016
1 parent 5edebfd commit f4a5515
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type handleFunc func(w http.ResponseWriter, req *http.Request)

func main() {
app := cli.NewApp()
app.Version = "1.0.2"
app.Version = "1.0.3"
app.Usage = "hack bellingham website"

app.Flags = []cli.Flag{
Expand All @@ -31,12 +31,12 @@ func main() {
cli.StringFlag{
Name: "slack-team",
EnvVar: "HACK_BELLINGHAM_SLACK_TEAM",
Usage: "",
Usage: "slack team name, as found in the slack URL",
},
cli.StringFlag{
Name: "slack-token",
EnvVar: "HACK_BELLINGHAM_SLACK_TOKEN",
Usage: "",
Usage: "access token for your slack team",
},
}

Expand Down

0 comments on commit f4a5515

Please sign in to comment.