format/state: added missing newline in the `outputs` output (#19542)

This commit is contained in:
Kristin Laemmert 2018-12-04 11:37:22 -08:00 committed by GitHub
parent 98c8ac0862
commit e3cecb7d56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -73,6 +73,7 @@ func State(opts *StateOpts) string {
v := m.OutputValues[k]
p.buf.WriteString(fmt.Sprintf("%s = ", k))
p.writeValue(v.Value, plans.NoOp, 0)
p.buf.WriteString("\n\n")
}
}