1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 02:50:12 +01:00

Pass verbose flag to buildserver's build.py

This commit is contained in:
Ciaran Gultnieks 2013-11-24 10:29:09 +00:00
parent 95495b2818
commit 4ee57f2d8b

View File

@ -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 = ''