From 32f1c82e2ba79027187dfda05ab17e0041cfaca6 Mon Sep 17 00:00:00 2001 From: core Date: Sat, 30 May 2026 00:27:47 +0500 Subject: [PATCH] add .gitattributes: force *.sh to LF entrypoint.sh has a /bin/sh shebang; CRLF would break exec in the Linux container. Keep shell scripts LF-only regardless of Windows autocrlf. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a2843b5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# shell-скрипты всегда с LF — CRLF ломает shebang/exec в Linux-контейнере +*.sh text eol=lf