From 1aa73f7b7051c9624ece653ef673aa40bae72b25 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 8 Jan 2012 23:40:05 -0800 Subject: [PATCH] Fix issue where "-c" was error checking... --- lib/vagrant/command/ssh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/command/ssh.rb b/lib/vagrant/command/ssh.rb index 5cebabed8..acbe41deb 100644 --- a/lib/vagrant/command/ssh.rb +++ b/lib/vagrant/command/ssh.rb @@ -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