Fix some Ruby

This commit is contained in:
Seth Vargo 2015-11-19 10:25:32 -08:00
parent 764e151672
commit eac1960d45
1 changed files with 3 additions and 2 deletions

View File

@ -13,8 +13,9 @@ module Vagrant
def initialize(app, env, place=nil)
@app = app
@logger = Log4r::Logger.new("vagrant::action::builtin::provision_cleanup")
@place ||= :after
@place = @place.to_sym
place ||= :after
@place = place.to_sym
end
def call(env)