1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-15 19:00:11 +02:00

Forgot one --package line on build.py

This commit is contained in:
Daniel Martí 2013-12-20 18:43:52 +01:00
parent 99b5d5e387
commit 27c7990261
2 changed files with 2 additions and 2 deletions

View File

@ -323,7 +323,7 @@ def build_server(app, thisbuild, vcs, build_dir, output_dir, force):
cmdline += ' --force --test'
if options.verbose:
cmdline += ' --verbose'
cmdline += ' -p ' + app['id'] + ' --vercode ' + thisbuild['vercode']
cmdline += "%s:%s" % (app['id'], thisbuild['vercode'])
chan.exec_command('bash -c ". ~/.bsenv && ' + cmdline + '"')
output = ''
error = ''

View File

@ -417,7 +417,7 @@ def main():
try:
suffix, pattern = pattern.split(' ', 1)
except ValueError:
raise MetaDataException("Invalid AUM at: " + line)
raise MetaDataException("Invalid AUM: " + mode)
else:
suffix = ''
gotcur = False