mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-31 19:08:30 +00:00
cmd/syncthing: Fix incorrect shadowing preventing first startup (fixes #4471)
This commit is contained in:
parent
997bed569e
commit
93a66deb7e
@ -978,7 +978,7 @@ func loadConfigAtStartup() *config.Wrapper {
|
||||
cfgFile := locations[locConfigFile]
|
||||
cfg, err := config.Load(cfgFile, myID)
|
||||
if os.IsNotExist(err) {
|
||||
cfg := defaultConfig(cfgFile)
|
||||
cfg = defaultConfig(cfgFile)
|
||||
cfg.Save()
|
||||
l.Infof("Default config saved. Edit %s to taste or use the GUI\n", cfg.ConfigPath())
|
||||
} else if err == io.EOF {
|
||||
|
Loading…
x
Reference in New Issue
Block a user