Merge pull request #3654 from mithaler/patch-1

providers/docker: fix Docker error reporting bug
This commit is contained in:
Mitchell Hashimoto 2014-05-06 14:47:03 -07:00
commit 011005b5a0
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ module VagrantPlugins
if result.exit_code != 0 && !interrupted
raise Errors::ExecuteError,
command: command.inspect,
command: cmd.inspect,
stderr: result.stderr,
stdout: result.stdout
end