aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/mason/health/init.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/mason/health/init.lua b/lua/mason/health/init.lua
index a757fbe0..b4ff37a2 100644
--- a/lua/mason/health/init.lua
+++ b/lua/mason/health/init.lua
@@ -144,7 +144,9 @@ function M.check()
if source:is_installed() then
health.report_ok(("Registry `%s` is installed."):format(source:get_display_name()))
else
- health.report_error(("Registry `%s` is NOT installed."):format(source:get_display_name()))
+ health.report_error(
+ ("Registry `%s` is not installed. Run :MasonUpdate to install."):format(source:get_display_name())
+ )
end
end