We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c71117 commit 42b8ed4Copy full SHA for 42b8ed4
1 file changed
internal/components/verifier/funcs.go
@@ -65,7 +65,8 @@ func regexpMatch(s, pattern string) string {
65
return fmt.Sprintf(`<%q>`, err)
66
}
67
if !matched {
68
- return fmt.Sprintf("<%q does not match the pattern %q>", s, pattern)
+ // Note: Changing %s to %q for s would throw yaml parsing error
69
+ return fmt.Sprintf("<%s does not match the pattern %q>", s, pattern)
70
71
return s
72
0 commit comments