panel public release

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-15 01:13:02 -07:00
commit 8a94ffd58f
2165 changed files with 301493 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Shell scripts and container entrypoints MUST stay LF regardless of the
# checkout host. On Windows (core.autocrlf=true) these files were being
# checked out as CRLF, and the release tarball — built by tar-ing the working
# tree, not `git archive` — captured that CRLF. A CRLF shebang makes the kernel
# exec `/bin/bash\r`, so every game module's container died with
# `exec /entrypoint.sh failed: No such file or directory`. Force LF here.
*.sh text eol=lf
entrypoint.sh text eol=lf
install.sh text eol=lf
Dockerfile text eol=lf
*.bash text eol=lf