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:
parent
72fbbe311a
commit
22bbe1ac50
2 changed files with 36 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue