lego/cmd/cmd_before.go
2021-03-04 19:16:59 +00:00

23 lines
515 B
Go

package cmd
import (
"github.com/go-acme/lego/v4/log"
"github.com/urfave/cli"
)
func Before(ctx *cli.Context) error {
if ctx.GlobalString("path") == "" {
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 ctx.GlobalString("server") == "" {
log.Fatal("Could not determine current working server. Please pass --server.")
}
return nil
}