Sha256: 2fa5f01304e75038e312e896784d23a8e9f1ce39e7aa74efb3c892e3b3cea654
Contents?: true
Size: 620 Bytes
Versions: 19
Compression:
Stored size: 620 Bytes
Contents
require 'vagrant/action/general/package' module VagrantPlugins module ProviderVirtualBox module Action class Package < Vagrant::Action::General::Package # Doing this so that we can test that the parent is properly # called in the unit tests. alias_method :general_call, :call def call(env) # Just match up a couple environmental variables so that # the superclass will do the right thing. Then, call the # superclass env["package.directory"] = env["export.temp_dir"] general_call(env) end end end end end
Version data entries
19 entries across 19 versions & 6 rubygems