From c6a4bd529dd5a16567adc1a169b64cd4874e7d36 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 4 Feb 2013 10:43:35 -0800 Subject: [PATCH] Missing interpolated variable for output message on plugin command --- plugins/commands/plugin/action/license_plugin.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/commands/plugin/action/license_plugin.rb b/plugins/commands/plugin/action/license_plugin.rb index 3bbf63df6..b69e52749 100644 --- a/plugins/commands/plugin/action/license_plugin.rb +++ b/plugins/commands/plugin/action/license_plugin.rb @@ -43,7 +43,8 @@ module VagrantPlugins FileUtils.cp(license_file, final_path) # Installed! - env[:ui].success(I18n.t("vagrant.commands.plugin.installed_license")) + env[:ui].success(I18n.t("vagrant.commands.plugin.installed_license", + :name => env[:plugin_name])) @app.call(env) end