Quellcode durchsuchen

Fix default configuration file not created on startup

ayntgl vor 3 Jahren
Ursprung
Commit
3be62dace0
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      config/config.go

+ 2 - 1
config/config.go

@@ -103,7 +103,8 @@ func (cfg *Config) Load() error {
 
 func (cfg *Config) configPath() string {
 	path, _ := os.UserConfigDir()
+	path = filepath.Join(path, Name)
 	// Create the configuration directory if it does not exist already.
-	_ = os.MkdirAll(filepath.Join(path, Name), os.ModePerm)
+	_ = os.MkdirAll(path, os.ModePerm)
 	return filepath.Join(path, "config.yml")
 }