Skip to content

Commit

Permalink
Fix help message (#121)
Browse files Browse the repository at this point in the history
* Fix help message

* Bump version
  • Loading branch information
raviqqe authored Oct 3, 2020
1 parent e60229b commit ea42d8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .snapshots/TestHelp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Application Options:
--skip-tls-verification Skip TLS certificate verification
--one-page-only Only check links found in the given
URL
--color=[auto|always|never] Color output. (default: auto)
--color=[auto|always|never] Color output (default: auto)
-h, --help Show this help
--version Show version

2 changes: 1 addition & 1 deletion arguments.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type arguments struct {
Verbose bool `short:"v" long:"verbose" description:"Show successful results too"`
SkipTLSVerification bool `long:"skip-tls-verification" description:"Skip TLS certificate verification"`
OnePageOnly bool `long:"one-page-only" description:"Only check links found in the given URL"`
Color color `long:"color" description:"Color output." choice:"auto" choice:"always" choice:"never" default:"auto"`
Color color `long:"color" description:"Color output" choice:"auto" choice:"always" choice:"never" default:"auto"`
Help bool `short:"h" long:"help" description:"Show this help"`
Version bool `long:"version" description:"Show version"`
URL string
Expand Down
2 changes: 1 addition & 1 deletion configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import "time"

const (
version = "2.2.0"
version = "2.2.1"
agentName = "muffet"
concurrency = 1024
tcpTimeout = 5 * time.Second
Expand Down

0 comments on commit ea42d8d

Please sign in to comment.