forked from TrueCloudLab/lego
24 lines
519 B
Go
24 lines
519 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/urfave/cli"
|
||
|
"github.com/xenolf/lego/log"
|
||
|
)
|
||
|
|
||
|
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
|
||
|
}
|