Fix check-cherry-pick.py to exit with 1 on any error

Change-Id: Iafaf3d96cc156fdb2d9d3cd7a6537bf5a46d8a29
diff --git a/tools/check-cherry-picks.py b/tools/check-cherry-picks.py
index adf763c..3d66d3c 100755
--- a/tools/check-cherry-picks.py
+++ b/tools/check-cherry-picks.py
@@ -139,7 +139,7 @@
           is_cherry_pick = True
           # If the change is in the release mappings check for holes.
           if missing_from:
-            found_errors = change_error(
+            found_errors |= change_error(
                 change,
                 'Error: missing Change-Id %s on branch %s. '
                 'Is present on %s and again on %s.' % (
@@ -150,7 +150,7 @@
           # The change is not in the non-dev part of the branch, so we need to
           # check that the fork from main included the change.
           if not is_commit_in(commit_on_main, newer_branch):
-            found_errors = change_error(
+            found_errors |= change_error(
                 change,
                 'Error: missing Change-Id %s on branch %s. '
                 'Is present on %s and on main as commit %s.' % (