command: Add a newline before confirming apply

This blank line delineating the plan and the query was accidentally
dropped as part of the views migration.
This commit is contained in:
Alisdair McDiarmid 2021-04-14 09:30:49 -04:00
parent 5f5432e8ea
commit e4031eaccf
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ func (b *Local) opApply(
v, err := op.UIIn.Input(stopCtx, &terraform.InputOpts{
Id: "approve",
Query: query,
Query: "\n" + query,
Description: desc,
})
if err != nil {