provisioners/shell: use detail level output for running

This commit is contained in:
Mitchell Hashimoto 2014-03-08 14:43:35 -08:00
parent c6b07e10c9
commit fa537740c6
1 changed files with 2 additions and 2 deletions

View File

@ -28,10 +28,10 @@ module VagrantPlugins
comm.upload(path.to_s, config.upload_path) comm.upload(path.to_s, config.upload_path)
if config.path if config.path
@machine.ui.info(I18n.t("vagrant.provisioners.shell.running", @machine.ui.detail(I18n.t("vagrant.provisioners.shell.running",
script: path.to_s)) script: path.to_s))
else else
@machine.ui.info(I18n.t("vagrant.provisioners.shell.running", @machine.ui.detail(I18n.t("vagrant.provisioners.shell.running",
script: "inline script")) script: "inline script"))
end end