diff --git a/pkg/runtime/runtime_manifest.go b/pkg/runtime/runtime_manifest.go index 45f514b13..ba519fa96 100644 --- a/pkg/runtime/runtime_manifest.go +++ b/pkg/runtime/runtime_manifest.go @@ -142,7 +142,7 @@ type FormattedObject map[string]interface{} // Format the `FormattedObject` as a JSON string. func (fo FormattedObject) Format(f fmt.State, c rune) { jsonStr, _ := json.Marshal(fo) - fmt.Fprintf(f, string(jsonStr)) + fmt.Fprintf(f, "%s", string(jsonStr)) } func (m *RuntimeManifest) resolveParameter(pd manifest.ParameterDefinition) (interface{}, error) {