Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit b198599

Browse files
committed
Fix "required variable" error message 👼
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 347faec commit b198599

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

render/render.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func errorIfMissing(substitution string, mapping composetemplate.Mapping) (strin
102102
value, found := mapping(substitution)
103103
if !found {
104104
return "", true, &composetemplate.InvalidTemplateError{
105-
Template: "required variable" + substitution + "is missing a value",
105+
Template: "required variable " + substitution + " is missing a value",
106106
}
107107
}
108108
return value, true, nil

0 commit comments

Comments
 (0)