summaryrefslogtreecommitdiff
path: root/storage.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage.go')
-rw-r--r--storage.go15
1 files changed, 7 insertions, 8 deletions
diff --git a/storage.go b/storage.go
index b7dcfe4..03f7691 100644
--- a/storage.go
+++ b/storage.go
@@ -84,14 +84,13 @@ func homeDirUnsafe() string {
//
// Ref: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
func AppConfigDir() string {
- basedir := os.Getenv("XDG_CONFIG_HOME")
- if basedir == "" {
- var err error
- basedir, err = os.UserConfigDir()
- if err != nil {
- Log().Warn("unable to determine directory for user configuration; falling back to current directory", zap.Error(err))
- return "./caddy"
- }
+ if basedir := os.Getenv("XDG_CONFIG_HOME"); basedir != "" {
+ return filepath.Join(basedir, "caddy")
+ }
+ basedir, err := os.UserConfigDir()
+ if err != nil {
+ Log().Warn("unable to determine directory for user configuration; falling back to current directory", zap.Error(err))
+ return "./caddy"
}
subdir := "caddy"
switch runtime.GOOS {