forked from TrueCloudLab/lego
Merge pull request #213 from ByStones/pwd
Allow setting "--path" even if os.Getwd() fails
This commit is contained in:
commit
7a24c51c48
1 changed files with 10 additions and 3 deletions
11
cli.go
11
cli.go
|
@ -41,11 +41,18 @@ func main() {
|
||||||
|
|
||||||
acme.UserAgent = "lego/" + app.Version
|
acme.UserAgent = "lego/" + app.Version
|
||||||
|
|
||||||
|
defaultPath := ""
|
||||||
cwd, err := os.Getwd()
|
cwd, err := os.Getwd()
|
||||||
if err != nil {
|
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.")
|
logger().Fatal("Could not determine current working directory. Please pass --path.")
|
||||||
}
|
}
|
||||||
defaultPath := path.Join(cwd, ".lego")
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
app.Commands = []cli.Command{
|
app.Commands = []cli.Command{
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue