We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a56c40 commit a523087Copy full SHA for a523087
1 file changed
exercism/main.go
@@ -43,7 +43,6 @@ func main() {
43
app.Name = "exercism"
44
app.Usage = "A command line tool to interact with http://exercism.io"
45
app.Version = Version
46
- app.HideVersion = true
47
app.Before = func(ctx *cli.Context) error {
48
debug.Verbose = ctx.GlobalBool("verbose")
49
debug.Println("verbose logging enabled")
@@ -60,10 +59,6 @@ func main() {
60
59
Name: "verbose",
61
Usage: "turn on verbose logging",
62
},
63
- cli.BoolFlag{
64
- Name: "version",
65
- Usage: "print the version",
66
- },
67
}
68
app.Commands = []cli.Command{
69
{
0 commit comments