From f8fe822011b8c82d9e837885a97e06165d6daef9 Mon Sep 17 00:00:00 2001 From: gusadmin Date: Tue, 14 Jul 2026 14:22:16 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=BE=D1=80=D1=81=D0=B8=D1=82=D1=8C=20LF?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20.sh=20=D1=87=D0=B5=D1=80=D0=B5=D0=B7=20?= =?UTF-8?q?.gitattributes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bash-скрипты (preconfigure.sh) с CRLF ломаются в Linux-CI. Co-Authored-By: Claude Opus 4.8 --- .gitattributes | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a373b30 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +# Bash-скрипты всегда LF (иначе ломаются в Linux-CI из-за CR в shebang/командах) +*.sh text eol=lf +# PowerShell — CRLF (нативно для Windows) +*.ps1 text eol=crlf +# YAML workflow — LF +*.yaml text eol=lf +*.yml text eol=lf