mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
19 lines
485 B
Ruby
19 lines
485 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
require_relative "../../../../lib/vagrant/action/general/package"
|
|
|
|
module VagrantPlugins
|
|
module HyperV
|
|
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)
|
|
general_call(env)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|