Sha256: 09b86485af80930fe84c6538865ae1c89abbe0cf7712b5d85d49cff95e7ed31d
Contents?: true
Size: 376 Bytes
Versions: 63
Compression:
Stored size: 376 Bytes
Contents
module VagrantPlugins module HyperV module Action class MessageWillNotDestroy def initialize(app, env) @app = app end def call(env) env[:ui].info I18n.t("vagrant.commands.destroy.will_not_destroy", name: env[:machine].name) @app.call(env) end end end end end
Version data entries
63 entries across 56 versions & 8 rubygems