Merge pull request #8983 from mikeroll/shell-nobold

provisioners/shell: Use ui.detail for displaying output
This commit is contained in:
Brian Cain 2017-09-28 15:54:44 -07:00 committed by GitHub
commit 0feb8e7edb
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ module VagrantPlugins
options = {} options = {}
options[:color] = color if !config.keep_color options[:color] = color if !config.keep_color
@machine.ui.info(data.chomp, options) @machine.ui.detail(data.chomp, options)
end end
end end