SI: continue with other stagings on failures

Turn around the boolean expression
This commit is contained in:
Stephan Kulow 2019-03-18 19:12:33 +01:00
parent 128c5c1633
commit 96e5c96e24

View File

@ -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 )