core: output a newline after ask with no echo

This commit is contained in:
Mitchell Hashimoto 2014-01-25 13:20:47 -08:00
parent 1a7b78e00e
commit b194525521
1 changed files with 4 additions and 0 deletions

View File

@ -136,6 +136,10 @@ module Vagrant
input = $stdin.gets
else
input = $stdin.noecho(&:gets)
# Output a newline because without echo, the newline isn't
# echoed either.
say(:info, "\n", opts)
end
# Get the results and chomp off the newline. We do a logical OR