2019-02-10 19:00:16 +00:00
|
|
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
2019-02-21 20:48:45 +00:00
|
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
|
|
// that can be found in the LICENSE file.
|
2019-02-10 19:00:16 +00:00
|
|
|
|
|
|
|
// +build !oss
|
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
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')
|
|
|
|
}
|