fix(run.bat): restore CRLF line endings, add .gitattributes

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 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 01:55:03 +02:00
parent 696c04c41c
commit 60f564c107

7
.gitattributes vendored Normal file
View File

@@ -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