Fix grep command for filtering server log output

This commit is contained in:
comfyanonymous 2026-01-05 14:25:56 -05:00 committed by GitHub
parent d70c8a9d5b
commit c7acdfc958
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,7 +32,7 @@ jobs:
working-directory: ComfyUI
- name: Check for unhandled exceptions in server log
run: |
grep -v "Found comfy_kitchen backend triton: {'available': False, 'disabled': False, 'unavailable_reason': "ImportError: No module named 'triton'", 'capabilities': []}" console_output.log > console_output_filtered.log
grep -v "Found comfy_kitchen backend triton: {'available': False, 'disabled': False, 'unavailable_reason': \"ImportError: No module named 'triton'\", 'capabilities': []}" console_output.log > console_output_filtered.log
cat console_output_filtered.log
if grep -qE "Exception|Error" console_output_filtered.log; then
echo "Unhandled exception/error found in server log."