From 60f564c107983ad790ef59495802b0476974d492 Mon Sep 17 00:00:00 2001 From: Marius Mutu Date: Tue, 24 Mar 2026 01:55:03 +0200 Subject: [PATCH] fix(run.bat): restore CRLF line endings, add .gitattributes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Windows batch files require CRLF — LF-only caused cmd.exe to exit silently mid-script. .gitattributes ensures *.bat stays CRLF. Co-Authored-By: Claude Sonnet 4.6 --- .gitattributes | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f723f86 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +# Default: LF for all text files +* text=auto eol=lf + +# Windows-only files must stay CRLF +*.bat text eol=crlf +*.cmd text eol=crlf +*.ps1 text eol=crlf