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