Skip to content

Commit

Permalink
fix reading sink 'String' field from file, should not use base64 enco…
Browse files Browse the repository at this point in the history
…ding
  • Loading branch information
sduchesneau committed Sep 28, 2023
1 parent 391f24a commit 9b87d50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifest/sink.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func convertYAMLtoJSONCompat(i any, resolvePath func(in string) string, scope st
if isBytes {
return base64.StdEncoding.EncodeToString(cnt), nil
}
return cnt, nil
return string(cnt), nil
}

if opts.ZipFromFolder {
Expand Down

0 comments on commit 9b87d50

Please sign in to comment.