diff --git a/src/cli/install.rs b/src/cli/install.rs index 5097200..507c1fc 100644 --- a/src/cli/install.rs +++ b/src/cli/install.rs @@ -132,6 +132,11 @@ impl InstallSubcommand { pt.formatted_elapsed(), )); + let is_windows = cfg!(windows); + if is_windows { + pt.finish_with_message("Please restart your PC to apply PATH changes"); + } + Ok(()) } }