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

Fix output and error assignment error

This commit is contained in:
Daniel Martí 2013-10-10 18:35:15 +02:00
parent 1cf99754a4
commit d7900e3c4b

View File

@ -432,8 +432,9 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
tarball.close()
# Run a build command if one is required...
output = ''
error = ''
if 'build' in thisbuild:
output, error = ''
build = thisbuild['build']
# Substitute source library paths into commands...
for name, libpath in srclibpaths: