You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a bit confusing, because this doesn't look like an invalid template. Because of the quotes the whole string is correctly parsed, the template has a valid name and does end with }. To fix this you need to change this regular expression:
The default value of a variable cannot contain a new line (
\n
) character because.*
doesn't match those. I.e. if you have this in your.env
file:You get this error mesage:
This is a bit confusing, because this doesn't look like an invalid template. Because of the quotes the whole string is correctly parsed, the template has a valid name and does end with
}
. To fix this you need to change this regular expression:compose-go/template/template.go
Line 31 in 9d0d133
To this:
(I don't know if there is another way to match anything, including a
\n
, in Go.)The text was updated successfully, but these errors were encountered: