mirror of
https://github.com/go-acme/lego.git
synced 2024-12-01 10:41:09 +02:00
Merge pull request #131 from xi2/master
Fix small typos in error messages
This commit is contained in:
commit
9900bf675a
@ -23,7 +23,7 @@ func checkFolder(path string) error {
|
||||
func setup(c *cli.Context) (*Configuration, *Account, *acme.Client) {
|
||||
err := checkFolder(c.GlobalString("path"))
|
||||
if err != nil {
|
||||
logger().Fatalf("Cound not check/create path: %s", err.Error())
|
||||
logger().Fatalf("Could not check/create path: %s", err.Error())
|
||||
}
|
||||
|
||||
conf := NewConfiguration(c)
|
||||
@ -190,7 +190,7 @@ func run(c *cli.Context) {
|
||||
|
||||
err := checkFolder(conf.CertPath())
|
||||
if err != nil {
|
||||
logger().Fatalf("Cound not check/create path: %s", err.Error())
|
||||
logger().Fatalf("Could not check/create path: %s", err.Error())
|
||||
}
|
||||
|
||||
saveCertRes(cert, conf)
|
||||
@ -202,7 +202,7 @@ func revoke(c *cli.Context) {
|
||||
|
||||
err := checkFolder(conf.CertPath())
|
||||
if err != nil {
|
||||
logger().Fatalf("Cound not check/create path: %s", err.Error())
|
||||
logger().Fatalf("Could not check/create path: %s", err.Error())
|
||||
}
|
||||
|
||||
for _, domain := range c.GlobalStringSlice("domains") {
|
||||
|
Loading…
Reference in New Issue
Block a user