-
Notifications
You must be signed in to change notification settings - Fork 91
Open
Labels
Description
When rendering, the value of each entry in BuildInfo is added as a comment. If the value contains special characters (e.g. "/*) the comment becomes malformed and breaks compilation.
/** The value is "Some git comment blabla/* and more comment" */
val gitComment = "Some git comment blabla/* and more comment"
The code comment above is malformed (at least in some versions of scala) since the initial /**
is considered unclosed.
See
s" /** The value is ${quote(value)}. */", |
s" /** The value is ${quote(value)}. */", |