mirror of
https://github.com/screentinker/screentinker.git
synced 2026-08-19 08:33:56 -06:00
`server/node_modules` was tracked as a SYMLINK to its own absolute path:
120000 blob ... server/node_modules -> /home/owner/Downloads/remote_display/server/node_modules
It came in with the #283 merge. Any attempt to resolve it is an ELOOP, so the
payload build died at the staging step with
cp: cannot stat 'server/node_modules': Too many levels of symbolic links
and a fresh checkout gets a server/ whose dependencies cannot resolve at all.
.gitignore only had `node_modules/`, and a trailing slash matches DIRECTORIES —
which is exactly how a symlink of that name slipped past it. Both forms are listed
now, so the same mistake cannot be committed again.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014kfhrUPit5MCqxeTQyqr56
|
||
|---|---|---|
| .. | ||
| config | ||
| db | ||
| lib | ||
| middleware | ||
| player | ||
| routes | ||
| scripts | ||
| services | ||
| test | ||
| ws | ||
| .gitignore | ||
| config.js | ||
| package-lock.json | ||
| package.json | ||
| server.js | ||
| smoke-ui.js | ||
| version.js | ||