02f1fa4ef3
- .gitattributes: enforce LF line endings for .sh/.py to prevent CRLF issues on Linux - Changelog: document Agent install 404 fix, curl|bash pipe fix, CRLF fix, and successful deployment to both sub-servers Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
10 lines
228 B
Plaintext
10 lines
228 B
Plaintext
# Shell scripts must always use LF line endings (CRLF breaks bash execution on Linux)
|
|
*.sh text eol=lf
|
|
|
|
# Python files should also use LF
|
|
*.py text eol=lf
|
|
|
|
# Windows batch files keep CRLF
|
|
*.bat text eol=crlf
|
|
*.cmd text eol=crlf
|