Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cli/mcp_tools_readonly.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Returns JSON array with validation results for each workflow:
if args.Zizmor || args.Poutine || args.Actionlint {
// Check if Docker images are available; if not, start downloading and return retry message
if err := CheckAndPrepareDockerImages(ctx, args.Zizmor, args.Poutine, args.Actionlint); err != nil {
return nil, nil, newMCPError(jsonrpc.CodeInternalError, "docker images not ready", err.Error())
return nil, nil, newMCPError(jsonrpc.CodeInternalError, err.Error(), nil)
}

// Check for cancellation after Docker image preparation
Expand Down
Loading