forked from TrueCloudLab/lego
Merge pull request #209 from slon/master
Report error from command line parser to user.
This commit is contained in:
commit
a62452db95
1 changed files with 4 additions and 1 deletions
5
cli.go
5
cli.go
|
@ -141,7 +141,10 @@ func main() {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
app.Run(os.Args)
|
err = app.Run(os.Args)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func dnshelp(c *cli.Context) error {
|
func dnshelp(c *cli.Context) error {
|
||||||
|
|
Loading…
Reference in a new issue