From 514a6105898bc6d032ae13a27e820cf41feb0d0a Mon Sep 17 00:00:00 2001 From: 11EJDE11 Date: Mon, 6 Apr 2026 01:35:18 +1200 Subject: [PATCH] Force LF line endings on sh files --- .gitattributes | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..480e421 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +# Ensure shell scripts always use LF line endings on all platforms. +# Without this, Windows git (autocrlf=true) will convert LF->CRLF on checkout, +# causing "no such file or directory" errors when Docker runs the entrypoint. +*.sh text eol=lf + +# Standard: force LF for all text files committed to the repo +* text=auto