Skip to content

Commit e296987

Browse files
committed
handle missing mcp.log file
1 parent 6119ccd commit e296987

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/e2e.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,9 @@ jobs:
7676
7777
- if: failure() && matrix.transport != 'stdio'
7878
name: Print MCP logs
79-
run: cat mcp.log
79+
run: |
80+
if [ -f mcp.log ]; then
81+
cat mcp.log
82+
else
83+
echo "No log file found (mcp.log)"
84+
fi

0 commit comments

Comments
 (0)