From b8798886903b2a662fda2622fe10adbec4ab02d7 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Fri, 6 Jan 2012 12:21:06 +0000 Subject: [PATCH] Don't include skips in build successes --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']) -- 2.30.2