Fix issue where "-c" was error checking...

This commit is contained in:
Mitchell Hashimoto 2012-01-08 23:40:05 -08:00
parent d430d62941
commit 1aa73f7b70
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ module Vagrant
exit_status = 0
@logger.debug("Executing command: #{command}")
exit_status = vm.channel.execute(command) do |type, data|
exit_status = vm.channel.execute(command, :error_check => false) do |type, data|
# Determine the proper channel to send the output onto depending
# on the type of data we are receiving.
channel = type == :stdout ? :out : :error