From 9a84ad20b1554ff20d16a5bbfdd6dc16ac6d9c85 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 11 Nov 2022 08:23:52 +0100 Subject: [PATCH] pmb ci: fix arg desc for --all Reviewed-by: Luca Weiss Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20221111072354.3431-1-ollieparanoid@postmarketos.org%3E --- pmb/parse/arguments.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index b2e32a39..e2964823 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -551,8 +551,7 @@ def arguments_ci(subparser): " locally of git repo in current" " directory") ret.add_argument("-a", "--all", action="store_true", - help="name of the CI script to run, depending on the git" - " repository") + help="run all scripts") ret.add_argument("scripts", nargs="*", metavar="script", help="name of the CI script to run, depending on the git" " repository")