cmd/output: do not display cue code when value is a struct
Signed-off-by: Sam Alba <sam.alba@gmail.com>
This commit is contained in:
parent
872822baa6
commit
a7f4cd069f
@ -112,6 +112,10 @@ func FormatValue(val *compiler.Value) string {
|
|||||||
if val.IsConcreteR() != nil {
|
if val.IsConcreteR() != nil {
|
||||||
return val.IncompleteKindString()
|
return val.IncompleteKindString()
|
||||||
}
|
}
|
||||||
|
if val.IncompleteKindString() == "struct" {
|
||||||
|
return "struct"
|
||||||
|
}
|
||||||
|
|
||||||
// value representation in Cue
|
// value representation in Cue
|
||||||
valStr := fmt.Sprintf("%v", val.Cue())
|
valStr := fmt.Sprintf("%v", val.Cue())
|
||||||
// escape \n
|
// escape \n
|
||||||
|
Reference in New Issue
Block a user