1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-04 11:39:45 +02:00
lego/cmd/cmd_before.go

24 lines
523 B
Go
Raw Normal View History

2019-03-11 18:56:48 +02:00
package cmd
import (
2020-09-02 03:20:01 +02:00
"github.com/go-acme/lego/v4/log"
"github.com/urfave/cli"
)
func Before(ctx *cli.Context) error {
if len(ctx.GlobalString("path")) == 0 {
log.Fatal("Could not determine current working directory. Please pass --path.")
}
err := createNonExistingFolder(ctx.GlobalString("path"))
if err != nil {
log.Fatalf("Could not check/create path: %v", err)
}
if len(ctx.GlobalString("server")) == 0 {
log.Fatal("Could not determine current working server. Please pass --server.")
}
return nil
}