aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-08-17 15:25:26 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-08-17 15:32:07 +0200
commit60fe5c86b519eb7cc074f59068b01b4d60451b8e (patch)
treec5a39acdd80c22c5eec8d65643aa4a1fa33204d7 /scripts
parent872dbbd58be21a52ab9f2c007bb4db56d962f604 (diff)
obs: expand help for --feed
Diffstat (limited to 'scripts')
-rw-r--r--scripts/obs/lib/__init__.py7
1 files changed, 6 insertions, 1 deletions
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 @@ cmds_verbose = False
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"