File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package netctl
2
2
3
3
import (
4
4
"encoding/json"
5
+ "errors"
5
6
"fmt"
6
7
"io/ioutil"
7
8
"os"
@@ -12,6 +13,8 @@ import (
12
13
contivClient "github.com/contiv/netplugin/contivmodel/client"
13
14
)
14
15
16
+ var errHomeDirectoryNotSet = errors .New ("failed to detect HOME directory" )
17
+
15
18
// Config represents the contents of ~/.netctl/config.json
16
19
type Config struct {
17
20
Token string `json:"token"`
@@ -50,9 +53,19 @@ func configExists(ctx *cli.Context) bool {
50
53
51
54
// configPath returns the full path to the user's netctl config file
52
55
func configPath () string {
56
+ var homeDir string
57
+ // this fails for static binaries
53
58
usr , err := user .Current ()
59
+ if err == nil {
60
+ homeDir = usr .HomeDir
61
+ }
62
+ // this should work where we don't have static binaries
54
63
if err != nil {
55
- panic (err )
64
+ homeDir = os .Getenv ("HOME" )
65
+ }
66
+ // panic if we've failed to retrieve the home directory
67
+ if homeDir == "" {
68
+ panic (errHomeDirectoryNotSet )
56
69
}
57
70
58
71
return usr .HomeDir + "/.netctl/config.json"
You can’t perform that action at this time.
0 commit comments