Просмотр исходного кода

Tell the user if no updates are available after apt update

Thanks to Jakub Wilk for the suggestion.

Closes: #751388
Michael Vogt лет назад: 12
Родитель
Сommit
24d05892fe
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      apt-private/private-update.cc

+ 4 - 1
apt-private/private-update.cc

@@ -90,7 +90,10 @@ bool DoUpdate(CommandLine &CmdL)
          "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n",
          "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n",
          upgradable);
-      ioprintf(c1out, msg, upgradable);
+      if (upgradable == 0)
+         c1out << _("All packages are up to date.") << std::endl;
+      else
+         ioprintf(c1out, msg, upgradable);
    }
 
    return true;