core: output a newline after ask with no echo
This commit is contained in:
parent
1a7b78e00e
commit
b194525521
|
@ -136,6 +136,10 @@ module Vagrant
|
||||||
input = $stdin.gets
|
input = $stdin.gets
|
||||||
else
|
else
|
||||||
input = $stdin.noecho(&:gets)
|
input = $stdin.noecho(&:gets)
|
||||||
|
|
||||||
|
# Output a newline because without echo, the newline isn't
|
||||||
|
# echoed either.
|
||||||
|
say(:info, "\n", opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Get the results and chomp off the newline. We do a logical OR
|
# Get the results and chomp off the newline. We do a logical OR
|
||||||
|
|
Loading…
Reference in New Issue