mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-09 14:26:15 +01:00
Merge commit 'refs/pull/990/head' of github.com:openSUSE/osc
Add a --verbose <mode> option to the "osc build" command (it is just passed to the build script).
This commit is contained in:
commit
5c2e1b039a
2
NEWS
2
NEWS
@ -1,5 +1,5 @@
|
||||
0.176.0
|
||||
-
|
||||
- add --verbose option to build command
|
||||
|
||||
0.175.0
|
||||
- do not crash when running "osc search --binary --verbose foo"
|
||||
|
@ -742,6 +742,8 @@ def main(apiurl, opts, argv):
|
||||
if opts.multibuild_package:
|
||||
buildargs.append('--buildflavor=%s' % opts.multibuild_package)
|
||||
pac = pac + ":" + opts.multibuild_package
|
||||
if opts.verbose:
|
||||
buildargs.append('--verbose=%s' % opts.verbose)
|
||||
if opts.wipe:
|
||||
buildargs.append("--wipe")
|
||||
|
||||
|
@ -6541,6 +6541,8 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
help='only fetch packages from the api')
|
||||
@cmdln.option('--oldpackages', metavar='DIR',
|
||||
help='take previous build from DIR (special values: _self, _link)')
|
||||
@cmdln.option('--verbose', metavar='VERBOSE',
|
||||
help='set a verbose mode, arguments can be "all" or "vm"')
|
||||
@cmdln.option('--wipe', action='store_true',
|
||||
help=SUPPRESS_HELP)
|
||||
@cmdln.option('--shell', action='store_true',
|
||||
|
Loading…
Reference in New Issue
Block a user