Merge branch 'main' into bugfix/fix-ci-testing

This commit is contained in:
mwisnowski 2025-10-02 17:11:35 -07:00 committed by GitHub
commit a512f9b290
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
47 changed files with 3356 additions and 113 deletions

View file

@ -1546,7 +1546,11 @@ def _main() -> int:
print("Error: commander is required. Provide --commander or a JSON config with a 'commander' field.")
return 2
run(**resolved)
try:
run(**resolved)
except CommanderValidationError as exc:
print(str(exc))
return 2
return 0