mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Pass verbose flag to buildserver's build.py
This commit is contained in:
parent
95495b2818
commit
4ee57f2d8b
1 changed files with 2 additions and 0 deletions
|
|
@ -320,6 +320,8 @@ def build_server(app, thisbuild, vcs, build_dir, output_dir, force):
|
||||||
cmdline = 'python build.py --on-server'
|
cmdline = 'python build.py --on-server'
|
||||||
if force:
|
if force:
|
||||||
cmdline += ' --force --test'
|
cmdline += ' --force --test'
|
||||||
|
if options.verbose:
|
||||||
|
cmdline += ' --verbose'
|
||||||
cmdline += ' -p ' + app['id'] + ' --vercode ' + thisbuild['vercode']
|
cmdline += ' -p ' + app['id'] + ' --vercode ' + thisbuild['vercode']
|
||||||
chan.exec_command('bash -c ". ~/.bsenv && ' + cmdline + '"')
|
chan.exec_command('bash -c ". ~/.bsenv && ' + cmdline + '"')
|
||||||
output = ''
|
output = ''
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue