forked from TrueCloudLab/rclone
config: SetValueAndSave ignore error if config section does not exist yet
This commit is contained in:
parent
9b5308144f
commit
5ddfa9f7f6
1 changed files with 1 additions and 1 deletions
|
@ -575,7 +575,7 @@ func SetValueAndSave(name, key, value string) (err error) {
|
||||||
_, err = reloadedConfigFile.GetSection(name)
|
_, err = reloadedConfigFile.GetSection(name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// Section doesn't exist yet so ignore reload
|
// Section doesn't exist yet so ignore reload
|
||||||
return err
|
return nil
|
||||||
}
|
}
|
||||||
// Update the config file with the reloaded version
|
// Update the config file with the reloaded version
|
||||||
configFile = reloadedConfigFile
|
configFile = reloadedConfigFile
|
||||||
|
|
Loading…
Add table
Reference in a new issue