diff options
Diffstat (limited to 'pkg/config')
-rw-r--r-- | pkg/config/unix.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/config/unix.go b/pkg/config/unix.go index 7425f5b..f96f6a6 100644 --- a/pkg/config/unix.go +++ b/pkg/config/unix.go @@ -18,7 +18,8 @@ package config import ( "os" + "path" ) // Path for the config files -var Path = os.Getenv("HOME") + "/.config/leap" +var Path = path.Join(os.Getenv("HOME"), ".config", "leap") |