From 1bc267e6bb487a315515aed22cd91f04d50fc71e Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Wed, 29 Apr 2020 10:42:06 -0500 Subject: [PATCH] Restore cmdline update message --- Cmdline/Action/Update.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cmdline/Action/Update.cs b/Cmdline/Action/Update.cs index eebfa758a9..f0af134fa6 100644 --- a/Cmdline/Action/Update.cs +++ b/Cmdline/Action/Update.cs @@ -153,7 +153,7 @@ private void UpdateRepository(CKAN.KSP ksp, string repository = null) ? CKAN.Repo.UpdateAllRepositories(registry_manager, ksp, manager.Cache, user) != CKAN.RepoUpdateResult.Failed : CKAN.Repo.Update(registry_manager, ksp, user, repository); - user.RaiseMessage("Updated information on {0} compatible modules", updated); + user.RaiseMessage("Updated information on {0} compatible modules", registry_manager.registry.CompatibleModules(ksp.VersionCriteria()).Count()); } } }