From a7b9afaada296f934bc8f08431191fffff313922 Mon Sep 17 00:00:00 2001 From: sppo-ethx-f66c root user Date: Tue, 25 Sep 2018 13:00:34 -0500 Subject: [PATCH] Add ability to show/install unstable and RC releases from the command line --- src/Console/AppConsole.vala | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 2ea735fc..6cf0eb89 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -93,6 +93,7 @@ public class AppConsole : GLib.Object { msg += " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n"; msg += " --download " + _("Download packages for specified kernel") + "\n"; msg += " --clean-cache " + _("Remove files from application cache") + "\n"; + msg += " --show-unstable " + _("Show unstable and RC releases") + "\n"; msg += "\n"; msg += _("Options") + ":\n"; msg += "\n"; @@ -171,6 +172,10 @@ public class AppConsole : GLib.Object { cmd = args[k].down(); break; + case "--show-unstable": + LinuxKernel.hide_unstable = false; + break; + case "--download": case "--install": case "--remove":