1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-22 21:16:16 +01:00

Add flag '--noverify' next to '--no-verify'

Align with other '--no$bla' flags. Note that the alternative is added
after '--no-verify', optparse uses the first arg for the stored config
variable.
This commit is contained in:
Sascha Peilicke 2014-02-12 12:26:59 +01:00
parent b5d47ebd8c
commit 3c0dbaba7f

View File

@ -5450,7 +5450,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
help='Skip initialization of build root and start with build immediately.') help='Skip initialization of build root and start with build immediately.')
@cmdln.option('--nochecks', '--no-checks', action='store_true', @cmdln.option('--nochecks', '--no-checks', action='store_true',
help='Do not run post build checks on the resulting packages.') help='Do not run post build checks on the resulting packages.')
@cmdln.option('--no-verify', action='store_true', @cmdln.option('--no-verify', '--noverify', action='store_true',
help='Skip signature verification of packages used for build. (Global config in .oscrc: no_verify)') help='Skip signature verification of packages used for build. (Global config in .oscrc: no_verify)')
@cmdln.option('--noservice', '--no-service', action='store_true', @cmdln.option('--noservice', '--no-service', action='store_true',
help='Skip run of local source services as specified in _service file.') help='Skip run of local source services as specified in _service file.')