mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Forgot one --package line on build.py
This commit is contained in:
parent
99b5d5e387
commit
27c7990261
2 changed files with 2 additions and 2 deletions
|
|
@ -323,7 +323,7 @@ def build_server(app, thisbuild, vcs, build_dir, output_dir, force):
|
||||||
cmdline += ' --force --test'
|
cmdline += ' --force --test'
|
||||||
if options.verbose:
|
if options.verbose:
|
||||||
cmdline += ' --verbose'
|
cmdline += ' --verbose'
|
||||||
cmdline += ' -p ' + app['id'] + ' --vercode ' + thisbuild['vercode']
|
cmdline += "%s:%s" % (app['id'], thisbuild['vercode'])
|
||||||
chan.exec_command('bash -c ". ~/.bsenv && ' + cmdline + '"')
|
chan.exec_command('bash -c ". ~/.bsenv && ' + cmdline + '"')
|
||||||
output = ''
|
output = ''
|
||||||
error = ''
|
error = ''
|
||||||
|
|
|
||||||
|
|
@ -417,7 +417,7 @@ def main():
|
||||||
try:
|
try:
|
||||||
suffix, pattern = pattern.split(' ', 1)
|
suffix, pattern = pattern.split(' ', 1)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
raise MetaDataException("Invalid AUM at: " + line)
|
raise MetaDataException("Invalid AUM: " + mode)
|
||||||
else:
|
else:
|
||||||
suffix = ''
|
suffix = ''
|
||||||
gotcur = False
|
gotcur = False
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue