diff --git a/src/commands/plugins.rs b/src/commands/plugins.rs index fa60433434..0f8d7c1c33 100644 --- a/src/commands/plugins.rs +++ b/src/commands/plugins.rs @@ -644,12 +644,13 @@ fn continue_to_install( } fn prompt_confirm_install(manifest: &PluginManifest, package: &PluginPackage) -> Result { - let prompt = format!( - "Are you sure you want to install plugin '{}' with license {} from {}?", + println!( + "You are trying to install the `{}` plugin with {} license from {} ", manifest.name(), manifest.license(), package.url() ); + let prompt = "Are you sure you want to continue?".to_string(); let install = dialoguer::Confirm::new() .with_prompt(prompt) .default(false)