forked from TrueCloudLab/lego
Allow setting "--path" even if os.Getwd() fails
This commit is contained in:
parent
a62452db95
commit
e7292edf3c
1 changed files with 10 additions and 3 deletions
13
cli.go
13
cli.go
|
@ -41,11 +41,18 @@ func main() {
|
|||
|
||||
acme.UserAgent = "lego/" + app.Version
|
||||
|
||||
defaultPath := ""
|
||||
cwd, err := os.Getwd()
|
||||
if err != nil {
|
||||
logger().Fatal("Could not determine current working directory. Please pass --path.")
|
||||
if err == nil {
|
||||
defaultPath = path.Join(cwd, ".lego")
|
||||
}
|
||||
|
||||
app.Before = func(c *cli.Context) error {
|
||||
if c.GlobalString("path") == "" {
|
||||
logger().Fatal("Could not determine current working directory. Please pass --path.")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
defaultPath := path.Join(cwd, ".lego")
|
||||
|
||||
app.Commands = []cli.Command{
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue