4743f3efdd
CRLF line endings broke manage.sh on Ubuntu (set -e and function syntax errors). Add .gitattributes to keep *.sh on LF in git. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
182 B
Plaintext
10 lines
182 B
Plaintext
# Shell scripts must use LF (Linux deploy via curl | bash)
|
|
*.sh text eol=lf
|
|
|
|
# Docker / compose
|
|
Dockerfile text eol=lf
|
|
docker-compose.yml text eol=lf
|
|
|
|
# Default for text
|
|
* text=auto
|