mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-14 06:20:39 +00:00
21 lines
434 B
Go
21 lines
434 B
Go
|
package pretty
|
||
|
|
||
|
import (
|
||
|
"github.com/drone/drone-yaml/yaml"
|
||
|
)
|
||
|
|
||
|
// helper function pretty prints the registry resource.
|
||
|
func printRegistry(w writer, v *yaml.Registry) {
|
||
|
w.WriteString("---")
|
||
|
w.WriteTagValue("version", v.Version)
|
||
|
w.WriteTagValue("kind", v.Kind)
|
||
|
w.WriteTagValue("type", v.Type)
|
||
|
if v.Type == "encrypted" {
|
||
|
printData(w, v.Data)
|
||
|
} else {
|
||
|
w.WriteTagValue("data", v.Data)
|
||
|
}
|
||
|
w.WriteByte('\n')
|
||
|
w.WriteByte('\n')
|
||
|
}
|