From: Ciaran Gultnieks Date: Fri, 6 Jan 2012 12:21:06 +0000 (+0000) Subject: Don't include skips in build successes X-Git-Tag: 0.1~1170 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b8798886903b2a662fda2622fe10adbec4ab02d7;p=fdroidserver.git Don't include skips in build successes --- diff --git a/build.py b/build.py index be4fc3d0..85db53bb 100755 --- a/build.py +++ b/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'])