1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-16 18:01:37 +00:00

Change -config-dump to use KEY=VALUE format

This commit is contained in:
Benjamin 2021-09-26 08:35:31 -07:00 committed by fguillot
parent 72fbbe311a
commit 22bbe1ac50
2 changed files with 36 additions and 1 deletions

View file

@ -559,7 +559,7 @@ func (o *Options) String() string {
var builder strings.Builder
for _, option := range o.SortedOptions() {
builder.WriteString(fmt.Sprintf("%s: %v\n", option.Key, option.Value))
fmt.Fprintf(&builder, "%s=%v\n", option.Key, option.Value)
}
return builder.String()