From 190da2640492f4bfe70ca3e3908425f0dfbcdc4a Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Thu, 23 Oct 2014 16:02:51 -0400 Subject: [PATCH] Push does not have access to @machine --- plugins/pushes/noop/push.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/pushes/noop/push.rb b/plugins/pushes/noop/push.rb index 490e32188..537ea1c7d 100644 --- a/plugins/pushes/noop/push.rb +++ b/plugins/pushes/noop/push.rb @@ -2,9 +2,7 @@ module VagrantPlugins module NoopDeploy class Push < Vagrant.plugin("2", :push) def push - @machine.communicate.tap do |comm| - puts "pushed" - end + puts "pushed" end end end