From 37c390aeed80065a3e6b523b3079400f70223df0 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Sun, 10 Oct 2021 13:54:58 +0200 Subject: [PATCH] pmb/parse/arguments: add aportupgrade to --help (MR 2121) I keep forgetting this command exists, for one because it doesn't appear (besides in a big, hard-to-read, one-line list) in the --help output --- pmb/parse/arguments.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index 555332a6..0436c97a 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -355,7 +355,8 @@ def arguments_pkgrel_bump(subparser): def arguments_aportupgrade(subparser): - ret = subparser.add_parser("aportupgrade") + ret = subparser.add_parser("aportupgrade", help="check for outdated" + " packages that need upgrading") ret.add_argument("--dry", action="store_true", help="instead of modifying" " APKBUILDs, print the changes that would be made") ret.add_argument("--ref", help="git ref (tag, commit, etc) to use")