Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit d05996c

Browse files
committed
Update asking for template variable add endline at end of question
1 parent 297d872 commit d05996c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internals/secrethub/variable_reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func newPromptMissingVariableReader(reader tpl.VariableReader, io ui.IO) tpl.Var
6767
func (p *promptMissingVariableReader) ReadVariable(name string) (string, error) {
6868
variable, err := p.reader.ReadVariable(name)
6969
if err == tpl.ErrTemplateVarNotFound(name) {
70-
question := fmt.Sprintf("What is the value of the \"%s\" template variable?", name)
70+
question := fmt.Sprintf("What is the value of the \"%s\" template variable?\n", name)
7171
answer, askErr := ui.Ask(p.io, question)
7272
if askErr != nil {
7373
return "", err

0 commit comments

Comments
 (0)