Util::Busy calls the callbacks in reverse order

This commit is contained in:
Mitchell Hashimoto 2011-12-26 17:03:29 -08:00
parent bfc85d7f14
commit fd331ee785
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ module Vagrant
# Fires all the registered callbacks.
def fire_callbacks
registered.each { |r| r.call }
registered.reverse.each { |r| r.call }
end
# Helper method to get access to the class variable. This is mostly