newline is missing for BaseContextFile (#1396)

This commit is contained in:
Stupig
2021-04-01 12:07:27 +08:00
committed by GitHub
parent 04486f89bb
commit 1444376b0c

View File

@@ -146,7 +146,7 @@ func (ctx *templateContext) BaseContextFile() string {
if len(ctx.configs) > 0 {
bt, _ := json.Marshal(ctx.configs)
buff += ConfigFieldName + ": " + string(bt)
buff += ConfigFieldName + ": " + string(bt) + "\n"
}
if len(ctx.requiredSecrets) > 0 {