Makefile + README assume brew (Windows host can't follow) #53
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:31:49Z - https://github.com/coilysiren/repo-recall/issues/71
Observed
`Makefile:25`:
```make
@command -v tailwindcss >/dev/null || brew install tailwindcss
```
`README.md` install path (lines ~109-129) is exclusively `brew install coilysiren/tap/repo-recall` + `brew services`.
`README.md` localhost-open lines (88, 100, 116) all use `open http://...`, which is the Mac-only `open` command.
Proposed fix
`brew services` has no Windows equivalent. Recommend documenting "run `repo-recall` directly in a long-lived terminal or use Task Scheduler" for Windows users; don't try to mirror `brew services` semantics.
Out of scope
Service-management parity with `brew services` on Windows. Document the gap, don't paper over it.