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

Don't remove non-Popen related declares

This commit is contained in:
Daniel Martí 2013-10-16 23:34:32 +02:00
parent c83e4f9729
commit 4bb3b77554

View File

@ -289,6 +289,8 @@ def build_server(app, thisbuild, vcs, build_dir, output_dir, sdk_path, force):
cmdline += ' --force --test'
cmdline += ' -p ' + app['id'] + ' --vercode ' + thisbuild['vercode']
chan.exec_command('bash -c ". ~/.bsenv && ' + cmdline + '"')
output = ''
error = ''
while not chan.exit_status_ready():
while chan.recv_ready():
output += chan.recv(1024)