build: propagate --no-tarball option to buildserver

Closes #510
This commit is contained in:
Marcus Hoffmann 2018-07-09 14:48:59 +02:00
parent a10957942f
commit a728582077
No known key found for this signature in database
GPG Key ID: ACDF63BC43D5E530
1 changed files with 2 additions and 0 deletions

View File

@ -214,6 +214,8 @@ def build_server(app, build, vcs, build_dir, output_dir, log_dir, force):
cmdline += ' --verbose'
if options.skipscan:
cmdline += ' --skip-scan'
if options.notarball:
cmdline += ' --no-tarball'
cmdline += " %s:%s" % (app.id, build.versionCode)
chan.exec_command('bash --login -c "' + cmdline + '"')