From 96e5c96e2465a5cd39cb954a089597bceae279ab Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Mon, 18 Mar 2019 19:12:33 +0100 Subject: [PATCH] SI: continue with other stagings on failures Turn around the boolean expression --- staging-installcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging-installcheck.py b/staging-installcheck.py index ab5b5649..1f3d8868 100755 --- a/staging-installcheck.py +++ b/staging-installcheck.py @@ -522,7 +522,7 @@ if __name__ == '__main__': else: for staging in api.get_staging_projects(): if api.is_adi_project(staging): - result = result and staging_report.staging(staging) + result = staging_report.staging(staging) and result if not result: sys.exit( 1 )