neels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/29120 )
Change subject: obs: expand help for --feed ......................................................................
obs: expand help for --feed
Change-Id: Iabd165e4f7a8c17b30f01ad27abd1a878233dabf --- M scripts/obs/lib/__init__.py 1 file changed, 6 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified osmith: Looks good to me, approved
diff --git a/scripts/obs/lib/__init__.py b/scripts/obs/lib/__init__.py index 401e2de..b490ae8 100644 --- a/scripts/obs/lib/__init__.py +++ b/scripts/obs/lib/__init__.py @@ -13,7 +13,12 @@
def add_shared_arguments(parser): - parser.add_argument("-f", "--feed", help="package feed (default: nightly)", + parser.add_argument("-f", "--feed", + help="package feed (default: nightly). The feed" + " determines the git revision to be built:" + " 'nightly' builds 'origin/master'," + " 'latest' builds the last signed tag," + " other feeds build their respective branch.", metavar="FEED", default="nightly", choices=lib.config.feeds) parser.add_argument("-b", "--git-branch", help="instead of using a branch"