From b194525521384b29c1b113aa47a8b38c33a11778 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 25 Jan 2014 13:20:47 -0800 Subject: [PATCH] core: output a newline after ask with no echo --- lib/vagrant/ui.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/vagrant/ui.rb b/lib/vagrant/ui.rb index 2677d3238..e2e918f67 100644 --- a/lib/vagrant/ui.rb +++ b/lib/vagrant/ui.rb @@ -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