mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Don't include skips in build successes
This commit is contained in:
parent
775e1e245a
commit
b879888690
2
build.py
2
build.py
@ -265,6 +265,7 @@ for app in apps:
|
||||
if p.returncode != 0:
|
||||
raise BuildException("Failed to align application")
|
||||
os.remove(dest_unsigned)
|
||||
build_succeeded.append(app)
|
||||
except BuildException as be:
|
||||
print "Could not build app %s due to BuildException: %s" % (app['id'], be)
|
||||
failed_apps[app['id']] = be
|
||||
@ -274,7 +275,6 @@ for app in apps:
|
||||
except Exception as e:
|
||||
print "Could not build app %s due to unknown error: %s" % (app['id'], e)
|
||||
failed_apps[app['id']] = e
|
||||
build_succeeded.append(app)
|
||||
|
||||
for app in build_succeeded:
|
||||
print "success: %s" % (app['id'])
|
||||
|
Loading…
Reference in New Issue
Block a user