Skip to content

Commit

Permalink
fix: binary plist to XMLFormat (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
wgcv authored May 14, 2020
1 parent 8e093d5 commit b857403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/plist/plist.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func encode() error {
data := fileToData[file]
return func() error {
var out bytes.Buffer
err := plist.NewEncoderForFormat(&out, plist.BinaryFormat).Encode(data)
err := plist.NewEncoderForFormat(&out, plist.XMLFormat).Encode(data)
if err != nil {
return err
}
Expand Down

0 comments on commit b857403

Please sign in to comment.