README harness URL uses Mac-only 'open' command #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally filed by @coilysiren on 2026-05-10T06:32:15Z - https://github.com/coilysiren/eco-mcp-app/issues/30
Observed
`README.md:382`:
```
then open http://localhost:8765/static/harness.html
```
The `open` command is Mac-only and doesn't run on the Windows host.
Proposed fix
Drop the `open` and let the URL stand on its own. The line is already a comment, so:
```
then visit http://localhost:8765/static/harness.html
```
reads identically and works for everyone. Same shape as the otel-a2a-relay fix (filed in that repo).
Out of scope
Any other Mac-isms - this issue is scoped to the one harness URL line.