applier #1

Merged
pim merged 9 commits from applier into main 2025-11-23 07:31:34 +00:00
Showing only changes of commit ffa0a77f5e - Show all commits

View File

@@ -174,9 +174,9 @@ if __name__ == "__main__":
.wasSuccessful() .wasSuccessful()
) )
RETVAL = 0 retval = 0
if not yaml_ok: if not yaml_ok:
RETVAL -= 1 retval -= 1
if not unit_ok: if not unit_ok:
RETVAL -= 2 retval -= 2
sys.exit(RETVAL) sys.exit(retval)