Files
marketplaces/.gitattributes
sdarbinyan a2204c641b
Some checks failed
Architecture Governance / architecture (push) Has been cancelled
fix: force LF on systemd unit files
A CRLF checkout leaves a trailing carriage return in every unit value, which
systemd reads as part of the value.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-18 12:21:50 +04:00

12 lines
304 B
Plaintext

* text=auto
# Anything executed by a Linux shell must keep LF endings. A CRLF checkout
# makes bash fail with "\r: command not found" on the very first line.
*.sh text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# systemd chokes on trailing CR in unit values.
*.service text eol=lf
*.timer text eol=lf