From 134e56db21e13e666ffe29720213086476adf6e6 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 27 Jun 2012 11:16:04 -0700 Subject: [PATCH] Reference proper constant ALL_ACTIONS --- lib/vagrant/action/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/action/runner.rb b/lib/vagrant/action/runner.rb index 02b20a4a4..a28551b44 100644 --- a/lib/vagrant/action/runner.rb +++ b/lib/vagrant/action/runner.rb @@ -59,7 +59,7 @@ module Vagrant # Go through all the registered plugins and get all the hooks # for this sequence. Vagrant.plugin("1").registered.each do |plugin| - hooks = plugin.action_hook(Vagrant::Plugin::V1::ALL_ACTIONS) + hooks = plugin.action_hook(Vagrant::Plugin::V1::Plugin::ALL_ACTIONS) hooks += plugin.action_hook(id) hooks.each do |hook|